Evaluation Scenario 2

Question 1

Ingest SIDARTHE

This is the version directly from the SBML file. This will be replaced with a version from TA1/TA2 when available. This used our SBMLToolkit.jl library which reads SBML into ModelingToolkit and generates TeX'd versions of the equations so we could read the resulting model and confirm it is correct against the paper description.

using EasyModelAnalysis, SBML, SBMLToolkit, UnPack, Test

fn = "Giordano2020.xml"

myread(fn) = readSBML(fn, doc -> begin
                          set_level_and_version(3, 2)(doc)
                          convert_promotelocals_expandfuns(doc)
                      end)

m = myread(fn)
rn = ReactionSystem(m)
sys = convert(ODESystem, rn)
eqs = equations(sys)
defs_ = ModelingToolkit.defaults(sys)
defs = deepcopy(defs_)
evs = ModelingToolkit.get_continuous_events(sys)

@unpack Infected, Healed, Extinct, Diagnosed, Ailing, Recognized, Susceptible, Threatened = sys
@unpack alpha, epsilon, gamma, beta, delta, mu, nu, lambda, rho, kappa, xi, sigma, zeta, eta, theta, tau = sys
ps = [alpha, epsilon, gamma, beta, delta, mu, nu, lambda, rho, kappa, xi, sigma, zeta, eta]

@parameters t
D = Differential(t)
eqs2 = deepcopy(eqs)
append!(eqs2, D.(ps) .~ 0)

sys2 = ODESystem(eqs2, ModelingToolkit.get_iv(sys), states(sys), parameters(sys);
                 continuous_events = evs, defaults = defs, name = nameof(sys))
ssys = structural_simplify(sys2)

\[ \begin{align} \frac{\mathrm{d} \mathrm{Infected}\left( t \right)}{\mathrm{d}t} =& \left( \frac{\mathrm{Infected}\left( t \right) \alpha\left( t \right)}{Italy} + \frac{\mathrm{Diagnosed}\left( t \right) \beta\left( t \right)}{Italy} + \frac{\mathrm{Ailing}\left( t \right) \Gamma\left( t \right)}{Italy} + \frac{\mathrm{Recognized}\left( t \right) \delta\left( t \right)}{Italy} \right) \mathrm{Susceptible}\left( t \right) - \mathrm{Infected}\left( t \right) \epsilon\left( t \right) - \mathrm{Infected}\left( t \right) \lambda\left( t \right) - \mathrm{Infected}\left( t \right) \zeta\left( t \right) \\ \frac{\mathrm{d} \mathrm{Healed}\left( t \right)}{\mathrm{d}t} =& \mathrm{Ailing}\left( t \right) \kappa\left( t \right) + \mathrm{Diagnosed}\left( t \right) \rho\left( t \right) + \mathrm{Infected}\left( t \right) \lambda\left( t \right) + \mathrm{Recognized}\left( t \right) \xi\left( t \right) + \mathrm{Threatened}\left( t \right) \sigma\left( t \right) \\ \frac{\mathrm{d} \mathrm{Extinct}\left( t \right)}{\mathrm{d}t} =& tau \mathrm{Threatened}\left( t \right) \\ \frac{\mathrm{d} \mathrm{Diagnosed}\left( t \right)}{\mathrm{d}t} =& \mathrm{Infected}\left( t \right) \epsilon\left( t \right) - \mathrm{Diagnosed}\left( t \right) \eta\left( t \right) - \mathrm{Diagnosed}\left( t \right) \rho\left( t \right) \\ \frac{\mathrm{d} \mathrm{Ailing}\left( t \right)}{\mathrm{d}t} =& \mathrm{Infected}\left( t \right) \zeta\left( t \right) - theta \mathrm{Ailing}\left( t \right) - \mathrm{Ailing}\left( t \right) \kappa\left( t \right) - \mathrm{Ailing}\left( t \right) \mu\left( t \right) \\ \frac{\mathrm{d} \mathrm{Recognized}\left( t \right)}{\mathrm{d}t} =& theta \mathrm{Ailing}\left( t \right) + \mathrm{Diagnosed}\left( t \right) \eta\left( t \right) - \mathrm{Recognized}\left( t \right) \nu\left( t \right) - \mathrm{Recognized}\left( t \right) \xi\left( t \right) \\ \frac{\mathrm{d} \mathrm{Susceptible}\left( t \right)}{\mathrm{d}t} =& \left( \frac{ - \mathrm{Infected}\left( t \right) \alpha\left( t \right)}{Italy} + \frac{ - \mathrm{Diagnosed}\left( t \right) \beta\left( t \right)}{Italy} + \frac{ - \mathrm{Ailing}\left( t \right) \Gamma\left( t \right)}{Italy} + \frac{ - \mathrm{Recognized}\left( t \right) \delta\left( t \right)}{Italy} \right) \mathrm{Susceptible}\left( t \right) \\ \frac{\mathrm{d} \mathrm{Threatened}\left( t \right)}{\mathrm{d}t} =& \mathrm{Ailing}\left( t \right) \mu\left( t \right) + \mathrm{Recognized}\left( t \right) \nu\left( t \right) - tau \mathrm{Threatened}\left( t \right) - \mathrm{Threatened}\left( t \right) \sigma\left( t \right) \\ \frac{\mathrm{d} \alpha\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \epsilon\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \Gamma\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \beta\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \delta\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \mu\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \nu\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \lambda\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \rho\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \kappa\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \xi\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \sigma\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \zeta\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \eta\left( t \right)}{\mathrm{d}t} =& -0.0 \end{align} \]

Unit Tests

Unit Test 1

Set the initial values and parameters, as described in the Supplementary Methods section of the publication (pg. 9 of the pdf):

Initial Values: I = 200/60e6, D = 20/60e6, A = 1/60e6, R = 2/60e6, T = 0, H = 0, E = 0; S = 1 – I – D – A – R – T – H – E. Let total population = 60e6.

Parameters: α = 0.570, β = δ = 0.011, γ = 0.456, ε = 0.171, θ = 0.371, ζ = η = 0.125, μ = 0.017, ν = 0.027, τ = 0.01, λ = ρ = 0.034 and κ = ξ = σ = 0.017.

Simulate for 100 days, and determine the day and level of peak total infections (sum over all the infected states I, D, A, R, T). Expected output: The peak should occur around day 47, when ~60% of the population is infected.

The SBML model that was given had a few oddities. First, it made use of delay blocks. These are usually used to describe a delay differential equation. While our simulator does have the capability to solve delay differential equations and their inverse problems, it turns out that this was an issue with the SBML writing of the model as all of the delay values were zero. Thus as a simplification, we manually deleted the delay blocks to give a standard ODE representation (since a delay of 0 on all states is mathematically equivalent).

The paper and SBML model also described time-dependent parameters. These are parameters that would discretely change at pre-specified time points. However, we believe that the evaluators and/or paper must have used an SBML reading system that incorrectly handled these time-dependent parameters. This is because dropping the time-dependency and treating the parameters as constant gives the requested results of the unit test 1. A demonstration of this is as follows:

sysne = ODESystem(eqs2, ModelingToolkit.get_iv(sys), states(sys), parameters(sys);
                 defaults = defs, name = nameof(sys))
ssysne = structural_simplify(sysne)
probne = ODEProblem(ssysne, [], (0.0, 100.0))
ITALY_POPULATION = 60e6
idart = [Infected, Diagnosed, Ailing, Recognized, Threatened]
xmax, xmaxval = get_max_t(probne, sum(idart))

@test isapprox(xmax, 47; atol = 0.5)
@test isapprox(xmaxval, 0.6, atol = 0.01)
Test Passed

Full Analysis of the Effect of Events

TBD Paul

Unit Test 2

Now update the parameters to reflect various interventions that Italy implemented during the first wave, as described in detail on pg. 9. Simulate for 100 days, reproduce the trajectories in Fig. 2B, and determine the day and level of peak total infections (sum over all the infected states I, D, A, R, T). Expected output: Trajectories in Fig. 2B, peak occurs around day 50, with ~0.2% of the total population infected.

This unit test was a straightforward implementation of the scenario, requiring a named reparameterization. It makes use of the new ModelingToolkit feature designed for ASKEM, remake(prob, u0 = u0s, p = pars), which allows for a new ODE to be generated from the old ODE simply by mentioning which parameters need to be changed (all others are kept constant). The approximation tests on the bottom demonstrate that the results in Fig 2B are obtained.

ITALY_POPULATION = 60e6
u0s = [
    Infected => 200 / ITALY_POPULATION,
    Diagnosed => 20 / ITALY_POPULATION,
    Ailing => 1 / ITALY_POPULATION,
    Recognized => 2 / ITALY_POPULATION,
    Threatened => 0,
    Healed => 0,
    Extinct => 0,
]
push!(u0s, Susceptible => 1 - sum(last.(u0s)))

# The resulting basic reproduction number is R0 = 2.38.
pars = [alpha => 0.570, beta => 0.011, delta => 0.011, gamma => 0.456, epsilon => 0.171,
    theta => 0.371,
    zeta => 0.125, eta => 0.125, mu => 0.017, nu => 0.027, tau => 0.01,
    lambda => 0.034, rho => 0.034, kappa => 0.017, xi => 0.017, sigma => 0.017]
prob = ODEProblem(ssys, [], (0, 100))
prob_test1 = remake(prob, u0 = u0s, p = pars)
solt1 = solve(prob_test1, Tsit5(); saveat = 0:100)
og_states = states(sys)[1:8]
idart = [Infected, Diagnosed, Ailing, Recognized, Threatened]
plot(solt1; idxs = Infected)
plot(solt1; idxs = Diagnosed)
plot(solt1; idxs = idart)
@test solt1[Infected + Healed] == solt1[Infected] + solt1[Healed]
plot(solt1.t, solt1[sum(idart)] * ITALY_POPULATION; label = "IDART absolute")
plot(solt1.t, solt1[sum(idart)]; label = "IDART percent")

xmax, xmaxval = get_max_t(prob_test1, sum(idart))

@test isapprox(xmax, 47; atol = 4)
@test isapprox(xmaxval, 0.002; atol = 0.01)
Test Passed

Sensitivity Analysis

The difference between 1.b.i and 1.b.ii are changes in some parameter values over time. Describe the difference in outcomes between b.i and b.ii. Perform a sensitivity analysis to understand the sensitivity of the model to parameter variations and determine which parameter(s) were most responsible for the change in outcomes.

This analysis was a straightforward application of the get_sensitivity function in EasyModelAnalysis. The only issue was the creation of the bounds for the parameters, which was not given by the metadata from TA1/TA2. Thus we made a modeling choice that the viable parameter set is 50% below and 100% above the starting parameter choice. Future iterations of the modeling platform should preserve parameter bound data which would make this a one line analysis.

pbounds = [param => [
               0.5 * ModelingToolkit.defaults(sys)[param],
               2 * ModelingToolkit.defaults(sys)[param],
           ] for param in parameters(sys2)]
sensres = get_sensitivity(prob, 100.0, Infected, pbounds; samples = 200)
Dict{Symbol, Float64} with 135 entries:
  :epsilon_modifier_ModelValue_18_second_order       => 0.0
  :theta_Italy_second_order                          => 0.042388
  :Event_trigger_Fig4b_ModelValue_18_second_order    => 0.0
  :theta_ModelValue_19_second_order                  => -0.000578666
  :Event_trigger_Fig3d_alpha_modifier_second_order   => 0.0
  :tau_ModelValue_18_second_order                    => -4.92201e-10
  :ModelValue_21_ModelValue_20_second_order          => -0.252065
  :ModelValue_21_Event_trigger_Fig4b_second_order    => -0.045835
  :epsilon_modifier_Event_trigger_Fig3b_second_order => 0.0
  :Event_trigger_Fig4d_ModelValue_17_second_order    => 0.0
  :tau_theta_second_order                            => -7.79925e-10
  :tau_alpha_modifier_second_order                   => -4.92201e-10
  :ModelValue_20_ModelValue_17_second_order          => -0.316495
  :ModelValue_16_Italy_second_order                  => 0.0
  :Event_trigger_Fig4d_ModelValue_18_second_order    => 0.0
  :Event_trigger_Fig3d_Italy_second_order            => 0.0
  :Event_trigger_Fig4b_first_order                   => 0.0
  :ModelValue_20_ModelValue_18_second_order          => -0.316495
  :ModelValue_20_Italy_second_order                  => -0.0619385
  ⋮                                                  => ⋮
create_sensitivity_plot(prob, 100.0, Infected, pbounds; samples = 200)

Mininmum Parameter Threshold

Now return to the situation in b.i (constant parameters that don’t change over time). Let’s say we want to increase testing, diagnostics, and contact tracing efforts (implemented by increasing the detection parameters ε and θ). Assume that θ >= 2* ε, because a symptomatic person is more likely to be tested. What minimum constant values do these parameters need to be over the course of a 100-day simulation, to ensure that the total infected population (sum over all the infected states I, D, A, R, T) never rises above 1/3 of the total population?

This scenario demonstrates the lazily defined observables functionality that persists throughout our simulation and analysis libraries. When one solves an equation with ModelingToolkit symbolic values, sol[x] gives the solution with respect to x by name. While that improves code legibility, sol[x+y] is also allowed, and will automatically generate the solution of x(t) + y(t) on demand. Since this functionality is directly handled by the solution representation, this means that all functions built on the solution have this functionality. Thus without having to make any other changes, we can change our minimization to the complex form (Infected + Diagnosed + Ailing + Recognized + Threatened) / sum(states(sys)) required by the scenario.

However, this scenario also required making a modeling choice. In order to perform this minimization we needed, we needed to define the comparative cost between the different intervention parameters, eta and theta. We have made the assumption that the cost of interventions on these two parameters are the same, and have made requests to TA1/TA2 about the interpretation of these parameters for further information.

threshold_observable = (Infected + Diagnosed + Ailing + Recognized + Threatened) /
                       sum(states(sys))
cost = -(eta + theta)
EasyModelAnalysis.optimal_parameter_intervention_for_threshold(prob, threshold_observable,
                                                               0.33,
                                                               cost, [eta, theta],
                                                               [0.0, 0.0],
                                                               3 .* [
                                                                   ModelingToolkit.defaults(sys)[eta],
                                                                   ModelingToolkit.defaults(sys)[theta],
                                                               ];
                                                               maxtime = 60)
(Dict{Num, Float64}(theta => 1.1128889748488622, eta(t) => 0.37491266129487), (ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], nothing, nothing, [0.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f0a9370, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f0a9390, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f0a93b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f0a93d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 0.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f0a9370, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f0a9390, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f0a93b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f0a93d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [0.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.1718038246290268 0.0 … -5.418031145532396e-5 0.0; -0.12156620815163494 -1.0 … -6.586495020098323e-6 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [-0.0965159693259281 0.0 … -3.174384829662813e-5 0.0; 0.07999999999992724 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f0a9370, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f0a9390, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f0a93b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f0a93d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f0a9370, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f0a9390, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f0a93b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f0a93d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 0.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([-0.0965159693259281 0.0 … -3.174384829662813e-5 0.0; 0.07999999999992724 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  3
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                0
Number of accepted steps:                          0
Number of rejected steps:                          0, [1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.823481248901562e-6, 7.553053147217826e-8, 4.100115298939367e-12, 6.206422830721643e-7, 1.8919959096593202e-7, 1.287435274728437e-7, 0.9999951770501353, 2.0152455772900932e-9, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [5.45903137227993e-6, 3.3749722573151056e-7, 1.3540438016787557e-10, 1.4272118118221738e-6, 4.4525887785027995e-7, 7.397147076591496e-7, 0.9999915851622668, 2.2654996306401154e-8, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [9.020991336325278e-6, 9.5505174975034e-7, 1.1617399107041462e-9, 2.965861739394643e-6, 7.823244672359189e-7, 2.2921119144737454e-6, 0.9999838923156298, 1.0684808597825456e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.012471533139469e-5, 1.1538656639323649e-6, 1.6553090971654591e-9, 3.4209755573406564e-6, 8.810702910033218e-7, 2.780103654366265e-6, 0.9999815154867899, 1.3879406579801368e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.012471533139469e-5, 1.1538656639323649e-6, 1.6553090971654591e-9, 3.4209755573406564e-6, 8.810702910033218e-7, 2.780103654366265e-6, 0.9999815154867899, 1.3879406579801368e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.3862445706177898e-5, 2.8721799659024927e-6, 9.058370142732234e-9, 6.568736489455987e-6, 1.318496893412741e-6, 7.055035854070526e-6, 0.999967838400842, 4.923125417300486e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.865166132719884e-5, 5.303180434040891e-6, 2.7397960885781044e-8, 9.98509880977022e-6, 1.8194118098874907e-6, 1.2594394896588731e-5, 0.999950514918547, 1.1206028775188537e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7722576983697186e-5, 1.020389888572111e-5, 8.24742139348932e-8, 1.5843183262697532e-5, 2.6891447615954704e-6, 2.295312518902807e-5, 0.9999179687252973, 2.553538068943027e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7722576983697186e-5, 1.020389888572111e-5, 8.24742139348932e-8, 1.5843183262697532e-5, 2.6891447615954704e-6, 2.295312518902807e-5, 0.9999179687252973, 2.553538068943027e-6, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]  …  [6.601619044381374e-5, 0.0008870512261496362, 1.9417836401675794e-5, 0.0004138204923910775, 2.2475064044035163e-6, 0.0003170644996261075, 0.9981927944709968, 0.00010160444424935909, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.8637112548648286e-5, 0.0009544753525793581, 2.2898667361479104e-5, 0.0003949431333529772, 2.4803806116133997e-6, 0.0003183720886083299, 0.9981378253138349, 0.00011038461776560976, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.316627135727427e-5, 0.0010165080145339712, 2.6493101546944256e-5, 0.0003756029473105621, 2.5452152274956736e-6, 0.0003177224289037922, 0.9980896901577017, 0.00011828853008117916, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.895273628386945e-5, 0.0010743494855467305, 3.0200794524894287e-5, 0.0003565911324000654, 2.378421220500931e-6, 0.0003156474352942951, 0.9980464802926798, 0.00012541636871263455, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.554871876622466e-5, 0.0011294141224557934, 3.406404964330407e-5, 0.00033808572013113437, 2.137283582587081e-6, 0.0003122889030692259, 0.998006567997314, 0.00013190987170052666, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.268312002413673e-5, 0.0011826637406959762, 3.8121592600401594e-5, 0.00032012981618234827, 1.9410562938640165e-6, 0.0003077118070503936, 0.9979689121531028, 0.0001378533807128707, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.019974988187114e-5, 0.0012345150231131636, 4.23873325702877e-5, 0.0003028032672604797, 1.8187354889678853e-6, 0.00030203799850834475, 0.9979329892361655, 0.00014326532367425047, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.6145785106441834e-5, 0.001333699508975294, 5.14427938450958e-5, 0.00027058439760633006, 6.156552473642419e-7, 0.0002893368181067176, 0.9978658075664334, 0.00015238414134221125, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.183565105133291e-5, 0.0014518710128744855, 6.385498903760128e-5, 0.00023445212836603792, 7.459540346207294e-7, 0.0002684008838185046, 0.9977881164917443, 0.00016073955573601834, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [0.0, 0.5372211768462912, 1.8302638602466899, 3.5965856744182974, 3.9999999999999996, 3.9999999999999996, 6.53579091052661, 8.89043449079161, 11.999999999999998, 11.999999999999998  …  56.45337234181685, 59.73626862575946, 62.87902978395063, 65.92089423805659, 68.92260526821538, 71.9299103519611, 74.96380578748071, 81.08543286043245, 89.00524159493631, 100.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 3.9755185007897825e-7, 5.8748149466421765e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.447011204850828e-7, 1.300964942766241e-7, 1.0234958769963094e-12, 5.218941916131667e-7, 3.668906912886405e-7, 1.0238117582735107e-7, -1.9678670115069332e-6, 1.902314520191058e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.778101047092735e-7, 1.3509316364490247e-7, 3.374577814733044e-12, 5.278194584767904e-7, 3.423601302910332e-7, 1.4098371326203417e-7, -2.0268284532909236e-6, 2.758508329075018e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [9.95983152958038e-7, 1.5318836754343944e-7, 1.8072415113592468e-11, 5.501858459534965e-7, 2.596203965711284e-7, 2.744510827550729e-7, -2.23937659020039e-6, 5.9296720041009965e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0152630506873167e-6, 1.5584183498696828e-7, 2.1919934148904706e-11, 5.533462900318487e-7, 2.420632623040338e-7, 2.994119658997692e-7, -2.2723097673180814e-6, 6.3614434739957475e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0199996885410928e-6, 1.5650939582764372e-7, 2.288392976536003e-11, 5.541585496487962e-7, 2.3797893974774508e-7, 3.0535755562392807e-7, -2.2804995674678e-6, 6.472554148828708e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0121427902147457e-6, 1.5653949227537982e-7, 2.0152455772900932e-11, 5.55133170553693e-7, 2.609442311879535e-7, 2.824737090071155e-7, -2.2738916023522613e-6, 6.638056657600792e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.0121427902147457e-6, 1.5653949227537982e-7, 2.0152455772900932e-11, 5.55133170553693e-7, 2.609442311879535e-7, 2.824737090071155e-7, -2.2738916023522613e-6, 6.638056657600792e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0894003412418541e-6, 1.6957953275904902e-7, 3.397155362780483e-11, 5.727889560898591e-7, 2.2497986486886906e-7, 3.5478806051193344e-7, -2.4206827130377106e-6, 9.111986012517836e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.170415330037298e-6, 1.8471071433416873e-7, 5.895149412583595e-11, 5.955061183061767e-7, 2.0998042276267786e-7, 4.115631210904411e-7, -2.584450181894524e-6, 1.2215523869635785e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5119511746528735e-6, 2.4359358004606243e-7, 2.0857443436757466e-10, 6.847321146137177e-7, 8.260173689941956e-8, 7.003609676526636e-7, -3.247360583697192e-6, 2.3912435398087395e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.590480304644958e-6, 2.530335938937648e-7, 2.483471705472675e-10, 6.968918762828885e-7, -4.9917953169602385e-9, 8.136679538428211e-7, -3.374661726471303e-6, 2.5331445953283582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.609871716875873e-6, 2.554043156481126e-7, 2.5828007547224665e-10, 6.99998547965348e-7, -2.6021080834948974e-8, 8.411484013372232e-7, -3.406356019750325e-6, 2.5695838683244706e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5370136762392774e-6, 2.546619541503406e-7, 2.2654996306401155e-10, 7.065676865801424e-7, 1.7171642357492885e-7, 6.41377725453922e-7, -3.3384940290916546e-6, 2.6930013129978967e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5370136762392774e-6, 2.546619541503406e-7, 2.2654996306401155e-10, 7.065676865801424e-7, 1.7171642357492885e-7, 6.41377725453922e-7, -3.3384940290916546e-6, 2.6930013129978967e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.6683942772252823e-6, 2.8041582792927203e-7, 3.031329451963411e-10, 7.493623033778093e-7, 1.7034772355408436e-7, 7.128139026361702e-7, -3.6141151835858533e-6, 3.2478015918038835e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8229125400807702e-6, 3.1124038959283445e-7, 4.1496990339775276e-10, 8.027665719248917e-7, 1.7959817004561174e-7, 7.868732728104101e-7, -3.943044608407824e-6, 3.92386940499075e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.487005652016198e-6, 4.3947192387131356e-7, 9.798663708707627e-10, 1.028708576996566e-6, 1.6767345966439398e-7, 1.1439524782981465e-6, -5.3347547543832055e-6, 6.696279716571717e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6220359507779187e-6, 4.625862633630907e-7, 1.1055887871387265e-9, 1.0686309582213292e-6, 1.2331183878359283e-7, 1.2503921639164528e-6, -5.599683827608894e-6, 7.162106375937092e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6557859303138253e-6, 4.683605658415601e-7, 1.137024846131484e-9, 1.0786233691721413e-6, 1.1221001284802087e-7, 1.2769914905421183e-6, -5.66589554813097e-6, 7.278715456717215e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.57952608493373e-6, 4.61634840525172e-7, 1.0684808597825457e-9, 1.0710175019478744e-6, 2.3038461081327445e-7, 1.1405200675288497e-6, -5.556453225921072e-6, 7.23016393123889e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.57952608493373e-6, 4.61634840525172e-7, 1.0684808597825457e-9, 1.0710175019478744e-6, 2.3038461081327445e-7, 1.1405200675288497e-6, -5.556453225921072e-6, 7.23016393123889e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6281351815217896e-6, 4.7128980854197607e-7, 1.1154405622518162e-9, 1.0886063486364601e-6, 2.341656703453636e-7, 1.1626086052236786e-6, -5.660350344941314e-6, 7.442929010979444e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6801249366422634e-6, 4.816136433373047e-7, 1.1667381542780732e-9, 1.1074878918076518e-6, 2.3829959859482932e-7, 1.186118629932583e-6, -5.77151609416169e-6, 7.670465569277958e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8662078588745913e-6, 5.185454540571133e-7, 1.353888620392887e-9, 1.175258416714278e-6, 2.532123222034141e-7, 1.2700470814661653e-6, -6.169466994836302e-6, 8.484197290034773e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.893475803094055e-6, 5.239508204607751e-7, 1.3819458738693546e-9, 1.1852126237109368e-6, 2.5536959591352414e-7, 1.2823491782183332e-6, -6.2277716370058736e-6, 8.603166973437931e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9003110587322135e-6, 5.253058448562585e-7, 1.3889948516837564e-9, 1.1877092501353613e-6, 2.5591334700376494e-7, 1.285429776161213e-6, -6.242388213931732e-6, 8.632994219123599e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8994955644504364e-6, 5.251567853957835e-7, 1.387856292882323e-9, 1.1874339955409595e-6, 2.56017129459623e-7, 1.2849242876787062e-6, -6.240716134674354e-6, 8.630051585596273e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.57952608493373e-6, 4.61634840525172e-7, 1.0684808597825457e-9, 1.0710175019478744e-6, 2.3038461081327445e-7, 1.1405200675288497e-6, -5.556453225921072e-6, 7.23016393123889e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6281351815217896e-6, 4.7128980854197607e-7, 1.1154405622518162e-9, 1.0886063486364601e-6, 2.341656703453636e-7, 1.1626086052236786e-6, -5.660350344941314e-6, 7.442929010979444e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6801249366422634e-6, 4.816136433373047e-7, 1.1667381542780732e-9, 1.1074878918076518e-6, 2.3829959859482932e-7, 1.186118629932583e-6, -5.77151609416169e-6, 7.670465569277958e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8662078588745913e-6, 5.185454540571133e-7, 1.353888620392887e-9, 1.175258416714278e-6, 2.532123222034141e-7, 1.2700470814661653e-6, -6.169466994836302e-6, 8.484197290034773e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.893475803094055e-6, 5.239508204607751e-7, 1.3819458738693546e-9, 1.1852126237109368e-6, 2.5536959591352414e-7, 1.2823491782183332e-6, -6.2277716370058736e-6, 8.603166973437931e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9003110587322135e-6, 5.253058448562585e-7, 1.3889948516837564e-9, 1.1877092501353613e-6, 2.5591334700376494e-7, 1.285429776161213e-6, -6.242388213931732e-6, 8.632994219123599e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8994955644504364e-6, 5.251567853957835e-7, 1.387856292882323e-9, 1.1874339955409595e-6, 2.56017129459623e-7, 1.2849242876787062e-6, -6.240716134674354e-6, 8.630051585596273e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.217840722537014e-6, 5.251529464068511e-7, 1.387940657980137e-9, 1.1873912080513278e-6, 2.5509961360574786e-7, 1.2858307967999419e-6, -4.558996781897262e-6, 8.629355383839926e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.2990069880477027e-6, 5.698334594627105e-7, 1.7402447372114637e-9, 1.1953341810383312e-6, 1.9780373270829173e-7, 1.4392332849500306e-6, -4.804238552072421e-6, 1.0128666112814263e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3759349378273858e-6, 6.200857001124663e-7, 2.231037619551573e-9, 1.2142567966324386e-6, 2.0326137209606072e-7, 1.5382578761996832e-6, -5.073123641589472e-6, 1.1909592110188576e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8146891390450476e-6, 8.090580515700735e-7, 4.56807405693756e-9, 1.2801319384537988e-6, -4.1222807323032226e-7, 2.540593187691597e-6, -6.218208260209846e-6, 1.813959426227139e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.004322340849435e-6, 8.373173304591269e-7, 5.077327454702359e-9, 1.2720308860546614e-6, -1.0450475910825754e-6, 3.231439371611597e-6, -6.491656659146391e-6, 1.8651699379944352e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0540695358128167e-6, 8.443335689051823e-7, 5.206170636170257e-9, 1.2697885654292393e-6, -1.2136738154224207e-6, 3.4143518153775684e-6, -6.561810668790998e-6, 1.8773482805244202e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.7285693951937663e-6, 8.453795645681786e-7, 4.923125417300486e-9, 1.3260491139329188e-6, 2.2063616284468923e-7, 1.9780111396544103e-6, -6.303176478232473e-6, 1.9960797662120948e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.7285693951937663e-6, 8.453795645681786e-7, 4.923125417300486e-9, 1.3260491139329188e-6, 2.2063616284468923e-7, 1.9780111396544103e-6, -6.303176478232473e-6, 1.9960797662120948e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8198087428553115e-6, 9.002074554465438e-7, 5.6798344988610025e-9, 1.3581751945742436e-6, 2.0661940445877712e-7, 2.1009400630847556e-6, -6.6106636832819296e-6, 2.1923298836343677e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.918050631894549e-6, 9.617775260033416e-7, 6.615069164421342e-9, 1.399588488856196e-6, 2.1387528340649132e-7, 2.214263874483712e-6, -6.955653413940235e-6, 2.414825401315238e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3368479277801937e-6, 1.1955836838168365e-6, 1.05156898877412e-8, 1.561208855599017e-6, 5.3712697053173134e-8, 2.82999805984081e-6, -8.311709055824697e-6, 3.238421418469253e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.439387522562976e-6, 1.2326473934126282e-6, 1.1220156473243446e-8, 1.5822780378622384e-6, -1.2829552267969093e-7, 3.0845725124551556e-6, -8.557245397711884e-6, 3.354352976253331e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.465587137775362e-6, 1.2419217489116385e-6, 1.1397706824813478e-8, 1.5875727450061859e-6, -1.761174111630927e-7, 3.150491051545192e-6, -8.619184587829888e-6, 3.383316089297892e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.362766796416466e-6, 1.2377348075848642e-6, 1.1206028775188538e-8, 1.6018033761975366e-6, 2.447943204300779e-7, 2.7187873197049753e-6, -8.517815034392083e-6, 3.4072238528297403e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.362766796416466e-6, 1.2377348075848642e-6, 1.1206028775188538e-8, 1.6018033761975366e-6, 2.447943204300779e-7, 2.7187873197049753e-6, -8.517815034392083e-6, 3.4072238528297403e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5187847939252778e-6, 1.333341313582298e-6, 1.2911821484949284e-8, 1.676572157586752e-6, 2.521006324114303e-7, 2.8955271141414528e-6, -9.064188606289922e-6, 3.749507731577618e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6982749568509927e-6, 1.443973652336835e-6, 1.5027659349393253e-8, 1.769092742822355e-6, 2.7123706078558284e-7, 3.0878754424143268e-6, -9.699867271672457e-6, 4.1438575711297086e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4437720183906146e-6, 1.8837216474481407e-6, 2.3965131666493743e-8, 2.144704203098791e-6, 2.2319387548958393e-7, 3.977491328221644e-6, -1.226465961922607e-5, 5.678114149108011e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5959634148534327e-6, 1.9587867119719394e-6, 2.5600623671242774e-8, 2.2054732111978112e-6, 1.0756442482760928e-7, 4.238322333423882e-6, -1.272415831829709e-5, 5.924475983511727e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634896824696405e-6, 1.977554633135645e-6, 2.601168986295133e-8, 2.220670483040335e-6, 7.491244085393258e-8, 4.307199224007266e-6, -1.2839839045250266e-5, 5.985937496537305e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540726705994303e-6, 1.9604805836703157e-6, 2.5536632534236932e-8, 2.2208652461218e-6, 3.642149449213053e-7, 3.979944984672147e-6, -1.2688130559601399e-5, 5.963614616872892e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.362766796416466e-6, 1.2377348075848642e-6, 1.1206028775188538e-8, 1.6018033761975366e-6, 2.447943204300779e-7, 2.7187873197049753e-6, -8.517815034392083e-6, 3.4072238528297403e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5187847939252778e-6, 1.333341313582298e-6, 1.2911821484949284e-8, 1.676572157586752e-6, 2.521006324114303e-7, 2.8955271141414528e-6, -9.064188606289922e-6, 3.749507731577618e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6982749568509927e-6, 1.443973652336835e-6, 1.5027659349393253e-8, 1.769092742822355e-6, 2.7123706078558284e-7, 3.0878754424143268e-6, -9.699867271672457e-6, 4.1438575711297086e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4437720183906146e-6, 1.8837216474481407e-6, 2.3965131666493743e-8, 2.144704203098791e-6, 2.2319387548958393e-7, 3.977491328221644e-6, -1.226465961922607e-5, 5.678114149108011e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5959634148534327e-6, 1.9587867119719394e-6, 2.5600623671242774e-8, 2.2054732111978112e-6, 1.0756442482760928e-7, 4.238322333423882e-6, -1.272415831829709e-5, 5.924475983511727e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634896824696405e-6, 1.977554633135645e-6, 2.601168986295133e-8, 2.220670483040335e-6, 7.491244085393258e-8, 4.307199224007266e-6, -1.2839839045250266e-5, 5.985937496537305e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540726705994303e-6, 1.9604805836703157e-6, 2.5536632534236932e-8, 2.2208652461218e-6, 3.642149449213053e-7, 3.979944984672147e-6, -1.2688130559601399e-5, 5.963614616872892e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]  …  [[-3.381304710258825e-6, 2.1909106018028696e-5, 9.213564159440855e-7, -4.148332197968982e-6, -5.51934890071837e-7, 2.188679905371446e-6, -1.9807514695915488e-5, 2.869944154870905e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.2430945332051665e-6, 2.1750862458093722e-5, 9.369075508752351e-7, -4.413620211564935e-6, -2.565313713777043e-7, 1.7581411447616346e-6, -1.9386903777460613e-5, 2.8542387398778266e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.082909138736e-6, 2.1590969046749885e-5, 9.527643113473957e-7, -4.642457431795308e-6, -3.2858286955031876e-7, 1.694948667288851e-6, -1.9018509346449695e-5, 2.833776761145193e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0778952746625985e-6, 2.108331349419027e-5, 1.0063397081412407e-6, -5.2758021662274495e-6, 4.6071784843305495e-6, -3.71329073140189e-6, -1.7421035137731596e-5, 2.79119162336147e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.545872809461618e-6, 2.104322820138952e-5, 1.0133494193170414e-6, -5.296466728375061e-6, 1.0025964987030568e-5, -9.213163380451029e-6, -1.6841595925520444e-5, 2.8145562360710218e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.681615951092161e-6, 2.103463307429979e-5, 1.0150875430360716e-6, -5.296444403680664e-6, 1.156071228244752e-5, -1.0769000166028586e-5, -1.6684856671249145e-5, 2.821484292267179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4678894109831766e-6, 2.0959989646430462e-5, 1.0160444424935908e-6, -5.4186840688357375e-6, -9.137505165908365e-7, 1.7494799212260556e-6, -1.7667048674380016e-5, 2.7418586606396584e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.4678894109831766e-6, 2.0959989646430462e-5, 1.0160444424935908e-6, -5.4186840688357375e-6, -9.137505165908365e-7, 1.7494799212260556e-6, -1.7667048674380016e-5, 2.7418586606396584e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.405045794382789e-6, 2.0821684058508435e-5, 1.0305364350426475e-6, -5.550681688965502e-6, -3.9535724320482534e-7, 1.1080351914855105e-6, -1.733205217550947e-5, 2.722881217025997e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2884720757359224e-6, 2.0678793317755625e-5, 1.0452694817389866e-6, -5.6663941829542215e-6, -5.105039326888763e-7, 1.1031446928538511e-6, -1.7059540370270964e-5, 2.697703069301523e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.7752239266847464e-6, 2.0251005745362773e-5, 1.094694073538597e-6, -5.869449972140255e-6, 7.774548211188102e-6, -7.6184460660479664e-6, -1.551927543801062e-5, 2.6621473727941177e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.6276855832260374e-6, 2.024362171166953e-5, 1.10095518332024e-6, -5.766266492473793e-6, 1.6794707942815e-5, -1.673053082318354e-5, -1.4721283018817436e-5, 2.706481079896037e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.869598012118181e-6, 2.0243828208626042e-5, 1.1024991922347442e-6, -5.734120158934063e-6, 1.9332559177990316e-5, -1.9292564516957805e-5, -1.4501908907582406e-5, 2.7193050167413507e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8197157368042633e-6, 2.011072723300637e-5, 1.1038461776560976e-6, -6.045018491154316e-6, -1.3639110795023984e-6, 1.4909434686263132e-6, -1.6064603590533465e-5, 2.5877320187056603e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8197157368042633e-6, 2.011072723300637e-5, 1.1038461776560976e-6, -6.045018491154316e-6, -1.3639110795023984e-6, 1.4909434686263132e-6, -1.6064603590533465e-5, 2.5877320187056603e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8183657355291348e-6, 1.9990272723505038e-5, 1.116939701774773e-6, -6.091527232228221e-6, -5.995818440217364e-7, 6.200478832040538e-7, -1.5785125439062948e-5, 2.5673399423581757e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7334508099623522e-6, 1.986274840788446e-5, 1.1302248561621701e-6, -6.136989061360748e-6, -7.30876313880617e-7, 6.498496783003258e-7, -1.55809249637632e-5, 2.5394182066199595e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.620164207957471e-6, 1.950620729611027e-5, 1.1744917417363322e-6, -6.058958329859612e-6, 1.0464497120516212e-5, -1.0933461067805053e-5, -1.404679093145949e-5, 2.514178378718812e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.7863242793441467e-6, 1.9526299739008186e-5, 1.1799102019361444e-6, -5.8650990484283385e-6, 2.245190296101299e-5, -2.3018787814571794e-5, -1.3064121815031692e-5, 2.5762200554186507e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.11201158389783e-6, 1.9533700062244398e-5, 1.181239751451837e-6, -5.809760627248599e-6, 2.5786702969269858e-5, -2.6379484783762605e-5, -1.2794213680038209e-5, 2.593827891981147e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3857455488730002e-6, 1.935359883823073e-5, 1.1828853008117917e-6, -6.2688783575204395e-6, -1.5746512077353958e-6, 1.1023306364287005e-6, -1.4829967215095653e-5, 2.420427553753264e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.3857455488730002e-6, 1.935359883823073e-5, 1.1828853008117917e-6, -6.2688783575204395e-6, -1.5746512077353958e-6, 1.1023306364287005e-6, -1.4829967215095653e-5, 2.420427553753264e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4177236707913785e-6, 1.924513150362956e-5, 1.1947391070003878e-6, -6.266453939758138e-6, -7.117982828434402e-7, 1.4845610272487443e-7, -1.4590999235663816e-5, 2.39864841570195e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3557153476466943e-6, 1.912865446019252e-5, 1.2067387906129125e-6, -6.270592212890452e-6, -8.275513893520081e-7, 1.790215946513968e-7, -1.4429636304362863e-5, 2.3690804087951894e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.376024816043041e-6, 1.8813084886997948e-5, 1.2465483812565503e-6, -6.048773960991187e-6, 1.1006983905741506e-5, -1.1991669627002791e-5, -1.2992814068813441e-5, 2.3426652988544535e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.6048693378178705e-6, 1.884197139575465e-5, 1.2513357518061418e-6, -5.82444161730543e-6, 2.3516531974603935e-5, -2.459463045685879e-5, -1.1993255386052755e-5, 2.4073576758701154e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.944771910187019e-6, 1.8851452614300517e-5, 1.2525078279475321e-6, -5.762008705363485e-6, 2.6968351414029193e-5, -2.8071151290531944e-5, -1.1719931514249673e-5, 2.4255515640548794e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1037074574016217e-6, 1.866272236813313e-5, 1.2541636871263456e-6, -6.25605370122905e-6, -1.4896961409193502e-6, 5.140368285433672e-7, -1.3826877109178563e-5, 2.2454115249257422e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.1037074574016217e-6, 1.866272236813313e-5, 1.2541636871263456e-6, -6.25605370122905e-6, -1.4896961409193502e-6, 5.140368285433672e-7, -1.3826877109178563e-5, 2.2454115249257422e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1452607597573958e-6, 1.8561004120672625e-5, 1.2650152103583463e-6, -6.226679770740498e-6, -6.816666897363913e-7, -3.714490321761358e-7, -1.3622638409085051e-5, 2.2216753304645005e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0990359252487973e-6, 1.8451571910483578e-5, 1.2759647101452103e-6, -6.2060936751060254e-6, -7.779290078602508e-7, -3.4692933820300196e-7, -1.3488362828214933e-5, 2.1908141540042205e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.059932167756878e-6, 1.8152211959023207e-5, 1.3122062609536464e-6, -5.925179469034508e-6, 1.0013188484732837e-5, -1.1424241301834186e-5, -1.222182020214487e-5, 2.153566436060748e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1788546893562595e-6, 1.817661547497303e-5, 1.316560041341158e-6, -5.7098747124575485e-6, 2.1359248464086623e-5, -2.2852663847432585e-5, -1.1321439301545038e-5, 2.2104085703906207e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.487178890692986e-6, 1.8184689881600476e-5, 1.317625572305677e-6, -5.650594023378641e-6, 2.4479882317983924e-5, -2.5995056173324565e-5, -1.1075761390912668e-5, 2.2263927064187824e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.116305768504738e-7, 1.8013234353962186e-5, 1.3190987170052667e-6, -6.104113652656114e-6, -1.2996853063434616e-6, -9.94092689579066e-8, -1.2980728646848048e-5, 2.063234380688551e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.116305768504738e-7, 1.8013234353962186e-5, 1.3190987170052667e-6, -6.104113652656114e-6, -1.2996853063434616e-6, -9.94092689579066e-8, -1.2980728646848048e-5, 2.063234380688551e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.532243917608796e-7, 1.7915255377046963e-5, 1.3290884051448925e-6, -6.0593956310135905e-6, -5.927853301021773e-7, -8.719262902100205e-7, -1.280451095690971e-5, 2.037498817804522e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.17430140622674e-7, 1.781019513748295e-5, 1.339128687836329e-6, -6.023711795833562e-6, -6.786473171884065e-7, -8.463310218709214e-7, -1.2688701540230343e-5, 2.0054979904266304e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7773820580217101e-6, 1.7516485077025646e-5, 1.3722892750066553e-6, -5.719238747193192e-6, 8.79885855307568e-6, -1.0565509172273934e-5, -1.158183542039324e-5, 1.9563324927740957e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.76320137571822e-6, 1.7533744324172975e-5, 1.3762828948592288e-6, -5.521608858391478e-6, 1.8771652235266878e-5, -2.060945255744692e-5, -1.0791495495121628e-5, 2.004078832379161e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0348917320201124e-6, 1.7539800844194107e-5, 1.377259852666743e-6, -5.4674513385886905e-6, 2.151582357299577e-5, -2.337243369037471e-5, -1.0575693199930394e-5, 2.017585691057289e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.697837631922162e-7, 1.7388836999591764e-5, 1.378533807128707e-6, -5.869217723378325e-6, -1.147451724627031e-6, -6.064876932028121e-7, -1.2248567844169488e-5, 1.874137941849402e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-7.697837631922162e-7, 1.7388836999591764e-5, 1.378533807128707e-6, -5.869217723378325e-6, -1.147451724627031e-6, -6.064876932028121e-7, -1.2248567844169488e-5, 1.874137941849402e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.109111232025846e-7, 1.72934391345461e-5, 1.3876881681898778e-6, -5.815410237044827e-6, -5.174052721332683e-7, -1.2915438592921393e-6, -1.2092758533768529e-5, 1.8469017227053668e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.820858110892254e-7, 1.719142811849752e-5, 1.3968496123367768e-6, -5.7707681736992786e-6, -6.004560919754962e-7, -1.258439955436121e-6, -1.1990573053048694e-5, 1.8140453544145192e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5759806037081385e-6, 1.6902055776138145e-5, 1.4270090807803481e-6, -5.454207924402156e-6, 7.999728791408465e-6, -1.00617352851642e-5, -1.0993653062601099e-5, 1.7567832275486394e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4757558106254983e-6, 1.6914805395851937e-5, 1.43062963255874e-6, -5.268391170626434e-6, 1.7081984286287595e-5, -1.920657013042972e-5, -1.0275313329121752e-5, 1.7986111261051286e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.7242023169945273e-6, 1.6919613991450095e-5, 1.4315139546435788e-6, -5.217565413767978e-6, 1.958648761590781e-5, -2.1727669270241776e-5, -1.0078714337325232e-5, 1.8105357763280313e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.589398540876083e-7, 1.6781833252448046e-5, 1.4326532367425047e-6, -5.5861970503473564e-6, -1.0699815204830364e-6, -9.771975924413612e-7, -1.1601983859883091e-5, 1.679813388051905e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-6.776966897175015e-7, 1.644092216715852e-5, 1.4607898953197707e-6, -5.394005560669481e-6, -3.6129529077199864e-7, -1.8253577624514847e-6, -1.1212621925946876e-5, 1.5692651670790795e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-6.622364817585273e-7, 1.6202307765589765e-5, 1.4792572574078292e-6, -5.263121923337658e-6, -1.9652948918097693e-7, -2.0748046639016967e-6, -1.0974479322487666e-5, 1.4896068576689458e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-5.706694328658197e-7, 1.520879115827403e-5, 1.5505988365141825e-6, -4.719272959874817e-6, 4.611481085319419e-8, -2.6190207094701514e-6, -1.0050048812978242e-5, 1.1535071095473526e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-5.442219881309962e-7, 1.4921004769264092e-5, 1.5672342109008062e-6, -4.562265384374291e-6, 1.6452264394823172e-8, -2.643489885936557e-6, -9.809716028958295e-6, 1.0550020428404348e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-4.5393399032710254e-7, 1.3698188331943788e-5, 1.6280486142972263e-6, -3.909096301139726e-6, -1.962014616246218e-8, -2.774837162944106e-6, -8.810090833138735e-6, 6.413414874719175e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.360910697200367e-7, 1.3336599489335373e-5, 1.6388736249077944e-6, -3.729760878127083e-6, -1.3936233189861308e-8, -2.789483473724875e-6, -8.530196192734305e-6, 5.239947332529573e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f24c4d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f24c5b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f24c5d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f24c690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 100.0), [1.0, 1.0, 0.01, 1.1128889748488622, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(13, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), true, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f24c4d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f24c5b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f24c5d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f24c690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.823481248901562e-6, 7.553053147217826e-8, 4.100115298939367e-12, 6.206422830721643e-7, 1.8919959096593202e-7, 1.287435274728437e-7, 0.9999951770501353, 2.0152455772900932e-9, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [5.45903137227993e-6, 3.3749722573151056e-7, 1.3540438016787557e-10, 1.4272118118221738e-6, 4.4525887785027995e-7, 7.397147076591496e-7, 0.9999915851622668, 2.2654996306401154e-8, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [9.020991336325278e-6, 9.5505174975034e-7, 1.1617399107041462e-9, 2.965861739394643e-6, 7.823244672359189e-7, 2.2921119144737454e-6, 0.9999838923156298, 1.0684808597825456e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.012471533139469e-5, 1.1538656639323649e-6, 1.6553090971654591e-9, 3.4209755573406564e-6, 8.810702910033218e-7, 2.780103654366265e-6, 0.9999815154867899, 1.3879406579801368e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.012471533139469e-5, 1.1538656639323649e-6, 1.6553090971654591e-9, 3.4209755573406564e-6, 8.810702910033218e-7, 2.780103654366265e-6, 0.9999815154867899, 1.3879406579801368e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.3862445706177898e-5, 2.8721799659024927e-6, 9.058370142732234e-9, 6.568736489455987e-6, 1.318496893412741e-6, 7.055035854070526e-6, 0.999967838400842, 4.923125417300486e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.865166132719884e-5, 5.303180434040891e-6, 2.7397960885781044e-8, 9.98509880977022e-6, 1.8194118098874907e-6, 1.2594394896588731e-5, 0.999950514918547, 1.1206028775188537e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7722576983697186e-5, 1.020389888572111e-5, 8.24742139348932e-8, 1.5843183262697532e-5, 2.6891447615954704e-6, 2.295312518902807e-5, 0.9999179687252973, 2.553538068943027e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7722576983697186e-5, 1.020389888572111e-5, 8.24742139348932e-8, 1.5843183262697532e-5, 2.6891447615954704e-6, 2.295312518902807e-5, 0.9999179687252973, 2.553538068943027e-6, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]  …  [6.601619044381374e-5, 0.0008870512261496362, 1.9417836401675794e-5, 0.0004138204923910775, 2.2475064044035163e-6, 0.0003170644996261075, 0.9981927944709968, 0.00010160444424935909, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.8637112548648286e-5, 0.0009544753525793581, 2.2898667361479104e-5, 0.0003949431333529772, 2.4803806116133997e-6, 0.0003183720886083299, 0.9981378253138349, 0.00011038461776560976, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.316627135727427e-5, 0.0010165080145339712, 2.6493101546944256e-5, 0.0003756029473105621, 2.5452152274956736e-6, 0.0003177224289037922, 0.9980896901577017, 0.00011828853008117916, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.895273628386945e-5, 0.0010743494855467305, 3.0200794524894287e-5, 0.0003565911324000654, 2.378421220500931e-6, 0.0003156474352942951, 0.9980464802926798, 0.00012541636871263455, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.554871876622466e-5, 0.0011294141224557934, 3.406404964330407e-5, 0.00033808572013113437, 2.137283582587081e-6, 0.0003122889030692259, 0.998006567997314, 0.00013190987170052666, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.268312002413673e-5, 0.0011826637406959762, 3.8121592600401594e-5, 0.00032012981618234827, 1.9410562938640165e-6, 0.0003077118070503936, 0.9979689121531028, 0.0001378533807128707, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.019974988187114e-5, 0.0012345150231131636, 4.23873325702877e-5, 0.0003028032672604797, 1.8187354889678853e-6, 0.00030203799850834475, 0.9979329892361655, 0.00014326532367425047, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.6145785106441834e-5, 0.001333699508975294, 5.14427938450958e-5, 0.00027058439760633006, 6.156552473642419e-7, 0.0002893368181067176, 0.9978658075664334, 0.00015238414134221125, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.183565105133291e-5, 0.0014518710128744855, 6.385498903760128e-5, 0.00023445212836603792, 7.459540346207294e-7, 0.0002684008838185046, 0.9977881164917443, 0.00016073955573601834, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [0.0, 0.5372211768462912, 1.8302638602466899, 3.5965856744182974, 3.9999999999999996, 3.9999999999999996, 6.53579091052661, 8.89043449079161, 11.999999999999998, 11.999999999999998  …  56.45337234181685, 59.73626862575946, 62.87902978395063, 65.92089423805659, 68.92260526821538, 71.9299103519611, 74.96380578748071, 81.08543286043245, 89.00524159493631, 100.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 3.9755185007897825e-7, 5.8748149466421765e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.447011204850828e-7, 1.300964942766241e-7, 1.0234958769963094e-12, 5.218941916131667e-7, 3.668906912886405e-7, 1.0238117582735107e-7, -1.9678670115069332e-6, 1.902314520191058e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.778101047092735e-7, 1.3509316364490247e-7, 3.374577814733044e-12, 5.278194584767904e-7, 3.423601302910332e-7, 1.4098371326203417e-7, -2.0268284532909236e-6, 2.758508329075018e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [9.95983152958038e-7, 1.5318836754343944e-7, 1.8072415113592468e-11, 5.501858459534965e-7, 2.596203965711284e-7, 2.744510827550729e-7, -2.23937659020039e-6, 5.9296720041009965e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0152630506873167e-6, 1.5584183498696828e-7, 2.1919934148904706e-11, 5.533462900318487e-7, 2.420632623040338e-7, 2.994119658997692e-7, -2.2723097673180814e-6, 6.3614434739957475e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0199996885410928e-6, 1.5650939582764372e-7, 2.288392976536003e-11, 5.541585496487962e-7, 2.3797893974774508e-7, 3.0535755562392807e-7, -2.2804995674678e-6, 6.472554148828708e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0121427902147457e-6, 1.5653949227537982e-7, 2.0152455772900932e-11, 5.55133170553693e-7, 2.609442311879535e-7, 2.824737090071155e-7, -2.2738916023522613e-6, 6.638056657600792e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.0121427902147457e-6, 1.5653949227537982e-7, 2.0152455772900932e-11, 5.55133170553693e-7, 2.609442311879535e-7, 2.824737090071155e-7, -2.2738916023522613e-6, 6.638056657600792e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0894003412418541e-6, 1.6957953275904902e-7, 3.397155362780483e-11, 5.727889560898591e-7, 2.2497986486886906e-7, 3.5478806051193344e-7, -2.4206827130377106e-6, 9.111986012517836e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.170415330037298e-6, 1.8471071433416873e-7, 5.895149412583595e-11, 5.955061183061767e-7, 2.0998042276267786e-7, 4.115631210904411e-7, -2.584450181894524e-6, 1.2215523869635785e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5119511746528735e-6, 2.4359358004606243e-7, 2.0857443436757466e-10, 6.847321146137177e-7, 8.260173689941956e-8, 7.003609676526636e-7, -3.247360583697192e-6, 2.3912435398087395e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.590480304644958e-6, 2.530335938937648e-7, 2.483471705472675e-10, 6.968918762828885e-7, -4.9917953169602385e-9, 8.136679538428211e-7, -3.374661726471303e-6, 2.5331445953283582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.609871716875873e-6, 2.554043156481126e-7, 2.5828007547224665e-10, 6.99998547965348e-7, -2.6021080834948974e-8, 8.411484013372232e-7, -3.406356019750325e-6, 2.5695838683244706e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5370136762392774e-6, 2.546619541503406e-7, 2.2654996306401155e-10, 7.065676865801424e-7, 1.7171642357492885e-7, 6.41377725453922e-7, -3.3384940290916546e-6, 2.6930013129978967e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5370136762392774e-6, 2.546619541503406e-7, 2.2654996306401155e-10, 7.065676865801424e-7, 1.7171642357492885e-7, 6.41377725453922e-7, -3.3384940290916546e-6, 2.6930013129978967e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.6683942772252823e-6, 2.8041582792927203e-7, 3.031329451963411e-10, 7.493623033778093e-7, 1.7034772355408436e-7, 7.128139026361702e-7, -3.6141151835858533e-6, 3.2478015918038835e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8229125400807702e-6, 3.1124038959283445e-7, 4.1496990339775276e-10, 8.027665719248917e-7, 1.7959817004561174e-7, 7.868732728104101e-7, -3.943044608407824e-6, 3.92386940499075e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.487005652016198e-6, 4.3947192387131356e-7, 9.798663708707627e-10, 1.028708576996566e-6, 1.6767345966439398e-7, 1.1439524782981465e-6, -5.3347547543832055e-6, 6.696279716571717e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6220359507779187e-6, 4.625862633630907e-7, 1.1055887871387265e-9, 1.0686309582213292e-6, 1.2331183878359283e-7, 1.2503921639164528e-6, -5.599683827608894e-6, 7.162106375937092e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6557859303138253e-6, 4.683605658415601e-7, 1.137024846131484e-9, 1.0786233691721413e-6, 1.1221001284802087e-7, 1.2769914905421183e-6, -5.66589554813097e-6, 7.278715456717215e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.57952608493373e-6, 4.61634840525172e-7, 1.0684808597825457e-9, 1.0710175019478744e-6, 2.3038461081327445e-7, 1.1405200675288497e-6, -5.556453225921072e-6, 7.23016393123889e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.57952608493373e-6, 4.61634840525172e-7, 1.0684808597825457e-9, 1.0710175019478744e-6, 2.3038461081327445e-7, 1.1405200675288497e-6, -5.556453225921072e-6, 7.23016393123889e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6281351815217896e-6, 4.7128980854197607e-7, 1.1154405622518162e-9, 1.0886063486364601e-6, 2.341656703453636e-7, 1.1626086052236786e-6, -5.660350344941314e-6, 7.442929010979444e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6801249366422634e-6, 4.816136433373047e-7, 1.1667381542780732e-9, 1.1074878918076518e-6, 2.3829959859482932e-7, 1.186118629932583e-6, -5.77151609416169e-6, 7.670465569277958e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8662078588745913e-6, 5.185454540571133e-7, 1.353888620392887e-9, 1.175258416714278e-6, 2.532123222034141e-7, 1.2700470814661653e-6, -6.169466994836302e-6, 8.484197290034773e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.893475803094055e-6, 5.239508204607751e-7, 1.3819458738693546e-9, 1.1852126237109368e-6, 2.5536959591352414e-7, 1.2823491782183332e-6, -6.2277716370058736e-6, 8.603166973437931e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9003110587322135e-6, 5.253058448562585e-7, 1.3889948516837564e-9, 1.1877092501353613e-6, 2.5591334700376494e-7, 1.285429776161213e-6, -6.242388213931732e-6, 8.632994219123599e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8994955644504364e-6, 5.251567853957835e-7, 1.387856292882323e-9, 1.1874339955409595e-6, 2.56017129459623e-7, 1.2849242876787062e-6, -6.240716134674354e-6, 8.630051585596273e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.57952608493373e-6, 4.61634840525172e-7, 1.0684808597825457e-9, 1.0710175019478744e-6, 2.3038461081327445e-7, 1.1405200675288497e-6, -5.556453225921072e-6, 7.23016393123889e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6281351815217896e-6, 4.7128980854197607e-7, 1.1154405622518162e-9, 1.0886063486364601e-6, 2.341656703453636e-7, 1.1626086052236786e-6, -5.660350344941314e-6, 7.442929010979444e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6801249366422634e-6, 4.816136433373047e-7, 1.1667381542780732e-9, 1.1074878918076518e-6, 2.3829959859482932e-7, 1.186118629932583e-6, -5.77151609416169e-6, 7.670465569277958e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8662078588745913e-6, 5.185454540571133e-7, 1.353888620392887e-9, 1.175258416714278e-6, 2.532123222034141e-7, 1.2700470814661653e-6, -6.169466994836302e-6, 8.484197290034773e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.893475803094055e-6, 5.239508204607751e-7, 1.3819458738693546e-9, 1.1852126237109368e-6, 2.5536959591352414e-7, 1.2823491782183332e-6, -6.2277716370058736e-6, 8.603166973437931e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9003110587322135e-6, 5.253058448562585e-7, 1.3889948516837564e-9, 1.1877092501353613e-6, 2.5591334700376494e-7, 1.285429776161213e-6, -6.242388213931732e-6, 8.632994219123599e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8994955644504364e-6, 5.251567853957835e-7, 1.387856292882323e-9, 1.1874339955409595e-6, 2.56017129459623e-7, 1.2849242876787062e-6, -6.240716134674354e-6, 8.630051585596273e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.217840722537014e-6, 5.251529464068511e-7, 1.387940657980137e-9, 1.1873912080513278e-6, 2.5509961360574786e-7, 1.2858307967999419e-6, -4.558996781897262e-6, 8.629355383839926e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.2990069880477027e-6, 5.698334594627105e-7, 1.7402447372114637e-9, 1.1953341810383312e-6, 1.9780373270829173e-7, 1.4392332849500306e-6, -4.804238552072421e-6, 1.0128666112814263e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3759349378273858e-6, 6.200857001124663e-7, 2.231037619551573e-9, 1.2142567966324386e-6, 2.0326137209606072e-7, 1.5382578761996832e-6, -5.073123641589472e-6, 1.1909592110188576e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8146891390450476e-6, 8.090580515700735e-7, 4.56807405693756e-9, 1.2801319384537988e-6, -4.1222807323032226e-7, 2.540593187691597e-6, -6.218208260209846e-6, 1.813959426227139e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.004322340849435e-6, 8.373173304591269e-7, 5.077327454702359e-9, 1.2720308860546614e-6, -1.0450475910825754e-6, 3.231439371611597e-6, -6.491656659146391e-6, 1.8651699379944352e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0540695358128167e-6, 8.443335689051823e-7, 5.206170636170257e-9, 1.2697885654292393e-6, -1.2136738154224207e-6, 3.4143518153775684e-6, -6.561810668790998e-6, 1.8773482805244202e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.7285693951937663e-6, 8.453795645681786e-7, 4.923125417300486e-9, 1.3260491139329188e-6, 2.2063616284468923e-7, 1.9780111396544103e-6, -6.303176478232473e-6, 1.9960797662120948e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.7285693951937663e-6, 8.453795645681786e-7, 4.923125417300486e-9, 1.3260491139329188e-6, 2.2063616284468923e-7, 1.9780111396544103e-6, -6.303176478232473e-6, 1.9960797662120948e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8198087428553115e-6, 9.002074554465438e-7, 5.6798344988610025e-9, 1.3581751945742436e-6, 2.0661940445877712e-7, 2.1009400630847556e-6, -6.6106636832819296e-6, 2.1923298836343677e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.918050631894549e-6, 9.617775260033416e-7, 6.615069164421342e-9, 1.399588488856196e-6, 2.1387528340649132e-7, 2.214263874483712e-6, -6.955653413940235e-6, 2.414825401315238e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3368479277801937e-6, 1.1955836838168365e-6, 1.05156898877412e-8, 1.561208855599017e-6, 5.3712697053173134e-8, 2.82999805984081e-6, -8.311709055824697e-6, 3.238421418469253e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.439387522562976e-6, 1.2326473934126282e-6, 1.1220156473243446e-8, 1.5822780378622384e-6, -1.2829552267969093e-7, 3.0845725124551556e-6, -8.557245397711884e-6, 3.354352976253331e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.465587137775362e-6, 1.2419217489116385e-6, 1.1397706824813478e-8, 1.5875727450061859e-6, -1.761174111630927e-7, 3.150491051545192e-6, -8.619184587829888e-6, 3.383316089297892e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.362766796416466e-6, 1.2377348075848642e-6, 1.1206028775188538e-8, 1.6018033761975366e-6, 2.447943204300779e-7, 2.7187873197049753e-6, -8.517815034392083e-6, 3.4072238528297403e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.362766796416466e-6, 1.2377348075848642e-6, 1.1206028775188538e-8, 1.6018033761975366e-6, 2.447943204300779e-7, 2.7187873197049753e-6, -8.517815034392083e-6, 3.4072238528297403e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5187847939252778e-6, 1.333341313582298e-6, 1.2911821484949284e-8, 1.676572157586752e-6, 2.521006324114303e-7, 2.8955271141414528e-6, -9.064188606289922e-6, 3.749507731577618e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6982749568509927e-6, 1.443973652336835e-6, 1.5027659349393253e-8, 1.769092742822355e-6, 2.7123706078558284e-7, 3.0878754424143268e-6, -9.699867271672457e-6, 4.1438575711297086e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4437720183906146e-6, 1.8837216474481407e-6, 2.3965131666493743e-8, 2.144704203098791e-6, 2.2319387548958393e-7, 3.977491328221644e-6, -1.226465961922607e-5, 5.678114149108011e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5959634148534327e-6, 1.9587867119719394e-6, 2.5600623671242774e-8, 2.2054732111978112e-6, 1.0756442482760928e-7, 4.238322333423882e-6, -1.272415831829709e-5, 5.924475983511727e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634896824696405e-6, 1.977554633135645e-6, 2.601168986295133e-8, 2.220670483040335e-6, 7.491244085393258e-8, 4.307199224007266e-6, -1.2839839045250266e-5, 5.985937496537305e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540726705994303e-6, 1.9604805836703157e-6, 2.5536632534236932e-8, 2.2208652461218e-6, 3.642149449213053e-7, 3.979944984672147e-6, -1.2688130559601399e-5, 5.963614616872892e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.362766796416466e-6, 1.2377348075848642e-6, 1.1206028775188538e-8, 1.6018033761975366e-6, 2.447943204300779e-7, 2.7187873197049753e-6, -8.517815034392083e-6, 3.4072238528297403e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5187847939252778e-6, 1.333341313582298e-6, 1.2911821484949284e-8, 1.676572157586752e-6, 2.521006324114303e-7, 2.8955271141414528e-6, -9.064188606289922e-6, 3.749507731577618e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6982749568509927e-6, 1.443973652336835e-6, 1.5027659349393253e-8, 1.769092742822355e-6, 2.7123706078558284e-7, 3.0878754424143268e-6, -9.699867271672457e-6, 4.1438575711297086e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4437720183906146e-6, 1.8837216474481407e-6, 2.3965131666493743e-8, 2.144704203098791e-6, 2.2319387548958393e-7, 3.977491328221644e-6, -1.226465961922607e-5, 5.678114149108011e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5959634148534327e-6, 1.9587867119719394e-6, 2.5600623671242774e-8, 2.2054732111978112e-6, 1.0756442482760928e-7, 4.238322333423882e-6, -1.272415831829709e-5, 5.924475983511727e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634896824696405e-6, 1.977554633135645e-6, 2.601168986295133e-8, 2.220670483040335e-6, 7.491244085393258e-8, 4.307199224007266e-6, -1.2839839045250266e-5, 5.985937496537305e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540726705994303e-6, 1.9604805836703157e-6, 2.5536632534236932e-8, 2.2208652461218e-6, 3.642149449213053e-7, 3.979944984672147e-6, -1.2688130559601399e-5, 5.963614616872892e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]  …  [[-3.381304710258825e-6, 2.1909106018028696e-5, 9.213564159440855e-7, -4.148332197968982e-6, -5.51934890071837e-7, 2.188679905371446e-6, -1.9807514695915488e-5, 2.869944154870905e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.2430945332051665e-6, 2.1750862458093722e-5, 9.369075508752351e-7, -4.413620211564935e-6, -2.565313713777043e-7, 1.7581411447616346e-6, -1.9386903777460613e-5, 2.8542387398778266e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.082909138736e-6, 2.1590969046749885e-5, 9.527643113473957e-7, -4.642457431795308e-6, -3.2858286955031876e-7, 1.694948667288851e-6, -1.9018509346449695e-5, 2.833776761145193e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0778952746625985e-6, 2.108331349419027e-5, 1.0063397081412407e-6, -5.2758021662274495e-6, 4.6071784843305495e-6, -3.71329073140189e-6, -1.7421035137731596e-5, 2.79119162336147e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.545872809461618e-6, 2.104322820138952e-5, 1.0133494193170414e-6, -5.296466728375061e-6, 1.0025964987030568e-5, -9.213163380451029e-6, -1.6841595925520444e-5, 2.8145562360710218e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.681615951092161e-6, 2.103463307429979e-5, 1.0150875430360716e-6, -5.296444403680664e-6, 1.156071228244752e-5, -1.0769000166028586e-5, -1.6684856671249145e-5, 2.821484292267179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4678894109831766e-6, 2.0959989646430462e-5, 1.0160444424935908e-6, -5.4186840688357375e-6, -9.137505165908365e-7, 1.7494799212260556e-6, -1.7667048674380016e-5, 2.7418586606396584e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.4678894109831766e-6, 2.0959989646430462e-5, 1.0160444424935908e-6, -5.4186840688357375e-6, -9.137505165908365e-7, 1.7494799212260556e-6, -1.7667048674380016e-5, 2.7418586606396584e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.405045794382789e-6, 2.0821684058508435e-5, 1.0305364350426475e-6, -5.550681688965502e-6, -3.9535724320482534e-7, 1.1080351914855105e-6, -1.733205217550947e-5, 2.722881217025997e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2884720757359224e-6, 2.0678793317755625e-5, 1.0452694817389866e-6, -5.6663941829542215e-6, -5.105039326888763e-7, 1.1031446928538511e-6, -1.7059540370270964e-5, 2.697703069301523e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.7752239266847464e-6, 2.0251005745362773e-5, 1.094694073538597e-6, -5.869449972140255e-6, 7.774548211188102e-6, -7.6184460660479664e-6, -1.551927543801062e-5, 2.6621473727941177e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.6276855832260374e-6, 2.024362171166953e-5, 1.10095518332024e-6, -5.766266492473793e-6, 1.6794707942815e-5, -1.673053082318354e-5, -1.4721283018817436e-5, 2.706481079896037e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.869598012118181e-6, 2.0243828208626042e-5, 1.1024991922347442e-6, -5.734120158934063e-6, 1.9332559177990316e-5, -1.9292564516957805e-5, -1.4501908907582406e-5, 2.7193050167413507e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8197157368042633e-6, 2.011072723300637e-5, 1.1038461776560976e-6, -6.045018491154316e-6, -1.3639110795023984e-6, 1.4909434686263132e-6, -1.6064603590533465e-5, 2.5877320187056603e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8197157368042633e-6, 2.011072723300637e-5, 1.1038461776560976e-6, -6.045018491154316e-6, -1.3639110795023984e-6, 1.4909434686263132e-6, -1.6064603590533465e-5, 2.5877320187056603e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8183657355291348e-6, 1.9990272723505038e-5, 1.116939701774773e-6, -6.091527232228221e-6, -5.995818440217364e-7, 6.200478832040538e-7, -1.5785125439062948e-5, 2.5673399423581757e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7334508099623522e-6, 1.986274840788446e-5, 1.1302248561621701e-6, -6.136989061360748e-6, -7.30876313880617e-7, 6.498496783003258e-7, -1.55809249637632e-5, 2.5394182066199595e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.620164207957471e-6, 1.950620729611027e-5, 1.1744917417363322e-6, -6.058958329859612e-6, 1.0464497120516212e-5, -1.0933461067805053e-5, -1.404679093145949e-5, 2.514178378718812e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.7863242793441467e-6, 1.9526299739008186e-5, 1.1799102019361444e-6, -5.8650990484283385e-6, 2.245190296101299e-5, -2.3018787814571794e-5, -1.3064121815031692e-5, 2.5762200554186507e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.11201158389783e-6, 1.9533700062244398e-5, 1.181239751451837e-6, -5.809760627248599e-6, 2.5786702969269858e-5, -2.6379484783762605e-5, -1.2794213680038209e-5, 2.593827891981147e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3857455488730002e-6, 1.935359883823073e-5, 1.1828853008117917e-6, -6.2688783575204395e-6, -1.5746512077353958e-6, 1.1023306364287005e-6, -1.4829967215095653e-5, 2.420427553753264e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.3857455488730002e-6, 1.935359883823073e-5, 1.1828853008117917e-6, -6.2688783575204395e-6, -1.5746512077353958e-6, 1.1023306364287005e-6, -1.4829967215095653e-5, 2.420427553753264e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4177236707913785e-6, 1.924513150362956e-5, 1.1947391070003878e-6, -6.266453939758138e-6, -7.117982828434402e-7, 1.4845610272487443e-7, -1.4590999235663816e-5, 2.39864841570195e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3557153476466943e-6, 1.912865446019252e-5, 1.2067387906129125e-6, -6.270592212890452e-6, -8.275513893520081e-7, 1.790215946513968e-7, -1.4429636304362863e-5, 2.3690804087951894e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.376024816043041e-6, 1.8813084886997948e-5, 1.2465483812565503e-6, -6.048773960991187e-6, 1.1006983905741506e-5, -1.1991669627002791e-5, -1.2992814068813441e-5, 2.3426652988544535e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.6048693378178705e-6, 1.884197139575465e-5, 1.2513357518061418e-6, -5.82444161730543e-6, 2.3516531974603935e-5, -2.459463045685879e-5, -1.1993255386052755e-5, 2.4073576758701154e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.944771910187019e-6, 1.8851452614300517e-5, 1.2525078279475321e-6, -5.762008705363485e-6, 2.6968351414029193e-5, -2.8071151290531944e-5, -1.1719931514249673e-5, 2.4255515640548794e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1037074574016217e-6, 1.866272236813313e-5, 1.2541636871263456e-6, -6.25605370122905e-6, -1.4896961409193502e-6, 5.140368285433672e-7, -1.3826877109178563e-5, 2.2454115249257422e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.1037074574016217e-6, 1.866272236813313e-5, 1.2541636871263456e-6, -6.25605370122905e-6, -1.4896961409193502e-6, 5.140368285433672e-7, -1.3826877109178563e-5, 2.2454115249257422e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1452607597573958e-6, 1.8561004120672625e-5, 1.2650152103583463e-6, -6.226679770740498e-6, -6.816666897363913e-7, -3.714490321761358e-7, -1.3622638409085051e-5, 2.2216753304645005e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0990359252487973e-6, 1.8451571910483578e-5, 1.2759647101452103e-6, -6.2060936751060254e-6, -7.779290078602508e-7, -3.4692933820300196e-7, -1.3488362828214933e-5, 2.1908141540042205e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.059932167756878e-6, 1.8152211959023207e-5, 1.3122062609536464e-6, -5.925179469034508e-6, 1.0013188484732837e-5, -1.1424241301834186e-5, -1.222182020214487e-5, 2.153566436060748e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1788546893562595e-6, 1.817661547497303e-5, 1.316560041341158e-6, -5.7098747124575485e-6, 2.1359248464086623e-5, -2.2852663847432585e-5, -1.1321439301545038e-5, 2.2104085703906207e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.487178890692986e-6, 1.8184689881600476e-5, 1.317625572305677e-6, -5.650594023378641e-6, 2.4479882317983924e-5, -2.5995056173324565e-5, -1.1075761390912668e-5, 2.2263927064187824e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.116305768504738e-7, 1.8013234353962186e-5, 1.3190987170052667e-6, -6.104113652656114e-6, -1.2996853063434616e-6, -9.94092689579066e-8, -1.2980728646848048e-5, 2.063234380688551e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.116305768504738e-7, 1.8013234353962186e-5, 1.3190987170052667e-6, -6.104113652656114e-6, -1.2996853063434616e-6, -9.94092689579066e-8, -1.2980728646848048e-5, 2.063234380688551e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.532243917608796e-7, 1.7915255377046963e-5, 1.3290884051448925e-6, -6.0593956310135905e-6, -5.927853301021773e-7, -8.719262902100205e-7, -1.280451095690971e-5, 2.037498817804522e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.17430140622674e-7, 1.781019513748295e-5, 1.339128687836329e-6, -6.023711795833562e-6, -6.786473171884065e-7, -8.463310218709214e-7, -1.2688701540230343e-5, 2.0054979904266304e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7773820580217101e-6, 1.7516485077025646e-5, 1.3722892750066553e-6, -5.719238747193192e-6, 8.79885855307568e-6, -1.0565509172273934e-5, -1.158183542039324e-5, 1.9563324927740957e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.76320137571822e-6, 1.7533744324172975e-5, 1.3762828948592288e-6, -5.521608858391478e-6, 1.8771652235266878e-5, -2.060945255744692e-5, -1.0791495495121628e-5, 2.004078832379161e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0348917320201124e-6, 1.7539800844194107e-5, 1.377259852666743e-6, -5.4674513385886905e-6, 2.151582357299577e-5, -2.337243369037471e-5, -1.0575693199930394e-5, 2.017585691057289e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.697837631922162e-7, 1.7388836999591764e-5, 1.378533807128707e-6, -5.869217723378325e-6, -1.147451724627031e-6, -6.064876932028121e-7, -1.2248567844169488e-5, 1.874137941849402e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-7.697837631922162e-7, 1.7388836999591764e-5, 1.378533807128707e-6, -5.869217723378325e-6, -1.147451724627031e-6, -6.064876932028121e-7, -1.2248567844169488e-5, 1.874137941849402e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.109111232025846e-7, 1.72934391345461e-5, 1.3876881681898778e-6, -5.815410237044827e-6, -5.174052721332683e-7, -1.2915438592921393e-6, -1.2092758533768529e-5, 1.8469017227053668e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.820858110892254e-7, 1.719142811849752e-5, 1.3968496123367768e-6, -5.7707681736992786e-6, -6.004560919754962e-7, -1.258439955436121e-6, -1.1990573053048694e-5, 1.8140453544145192e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5759806037081385e-6, 1.6902055776138145e-5, 1.4270090807803481e-6, -5.454207924402156e-6, 7.999728791408465e-6, -1.00617352851642e-5, -1.0993653062601099e-5, 1.7567832275486394e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4757558106254983e-6, 1.6914805395851937e-5, 1.43062963255874e-6, -5.268391170626434e-6, 1.7081984286287595e-5, -1.920657013042972e-5, -1.0275313329121752e-5, 1.7986111261051286e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.7242023169945273e-6, 1.6919613991450095e-5, 1.4315139546435788e-6, -5.217565413767978e-6, 1.958648761590781e-5, -2.1727669270241776e-5, -1.0078714337325232e-5, 1.8105357763280313e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.589398540876083e-7, 1.6781833252448046e-5, 1.4326532367425047e-6, -5.5861970503473564e-6, -1.0699815204830364e-6, -9.771975924413612e-7, -1.1601983859883091e-5, 1.679813388051905e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-6.776966897175015e-7, 1.644092216715852e-5, 1.4607898953197707e-6, -5.394005560669481e-6, -3.6129529077199864e-7, -1.8253577624514847e-6, -1.1212621925946876e-5, 1.5692651670790795e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-6.622364817585273e-7, 1.6202307765589765e-5, 1.4792572574078292e-6, -5.263121923337658e-6, -1.9652948918097693e-7, -2.0748046639016967e-6, -1.0974479322487666e-5, 1.4896068576689458e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-5.706694328658197e-7, 1.520879115827403e-5, 1.5505988365141825e-6, -4.719272959874817e-6, 4.611481085319419e-8, -2.6190207094701514e-6, -1.0050048812978242e-5, 1.1535071095473526e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-5.442219881309962e-7, 1.4921004769264092e-5, 1.5672342109008062e-6, -4.562265384374291e-6, 1.6452264394823172e-8, -2.643489885936557e-6, -9.809716028958295e-6, 1.0550020428404348e-6, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-4.5393399032710254e-7, 1.3698188331943788e-5, 1.6280486142972263e-6, -3.909096301139726e-6, -1.962014616246218e-8, -2.774837162944106e-6, -8.810090833138735e-6, 6.413414874719175e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.360910697200367e-7, 1.3336599489335373e-5, 1.6388736249077944e-6, -3.729760878127083e-6, -1.3936233189861308e-8, -2.789483473724875e-6, -8.530196192734305e-6, 5.239947332529573e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1  …  1, 1, 1, 1, 1, 1, 1, 2, 2, 2], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.183565105133291e-5, 0.0014518710128744855, 6.385498903760128e-5, 0.00023445212836603792, 7.459540346207294e-7, 0.0002684008838185046, 0.9977881164917443, 0.00016073955573601834, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-6.589398540876083e-7, 1.6781833252448046e-5, 1.4326532367425047e-6, -5.5861970503473564e-6, -1.0699815204830364e-6, -9.771975924413612e-7, -1.1601983859883091e-5, 1.679813388051905e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.109111232025846e-7, 1.72934391345461e-5, 1.3876881681898778e-6, -5.815410237044827e-6, -5.174052721332683e-7, -1.2915438592921393e-6, -1.2092758533768529e-5, 1.8469017227053668e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.820858110892254e-7, 1.719142811849752e-5, 1.3968496123367768e-6, -5.7707681736992786e-6, -6.004560919754962e-7, -1.258439955436121e-6, -1.1990573053048694e-5, 1.8140453544145192e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5759806037081385e-6, 1.6902055776138145e-5, 1.4270090807803481e-6, -5.454207924402156e-6, 7.999728791408465e-6, -1.00617352851642e-5, -1.0993653062601099e-5, 1.7567832275486394e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4757558106254983e-6, 1.6914805395851937e-5, 1.43062963255874e-6, -5.268391170626434e-6, 1.7081984286287595e-5, -1.920657013042972e-5, -1.0275313329121752e-5, 1.7986111261051286e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.7242023169945273e-6, 1.6919613991450095e-5, 1.4315139546435788e-6, -5.217565413767978e-6, 1.958648761590781e-5, -2.1727669270241776e-5, -1.0078714337325232e-5, 1.8105357763280313e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.589398540876083e-7, 1.6781833252448046e-5, 1.4326532367425047e-6, -5.5861970503473564e-6, -1.0699815204830364e-6, -9.771975924413612e-7, -1.1601983859883091e-5, 1.679813388051905e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.092291974280028e-8, -4.081596393811336e-9, 3.360360371523842e-11, -1.1076659721123286e-8, -6.083913424819061e-7, 6.111084069210052e-7, -4.468744550286899e-8, -3.827886167822394e-9, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.7526904322686847e-5, 0.0015831591222942153, 7.984351647287674e-5, 0.00019753058736668956, 5.948526317043707e-7, 0.0002411773278073869, 0.9977040161011754, 0.00016616825459183756, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.05842898822548311, -0.0018266139862979252, 3.2237156635796466e-5, -0.008390583702711611, -0.607212708432489, 0.4673112253221828, -4.4733569742979303e-5, -0.003348204558081279, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.183565105133291e-5, 0.0014518710128744855, 6.385498903760128e-5, 0.00023445212836603792, 7.459540346207294e-7, 0.0002684008838185046, 0.9977881164917443, 0.00016073955573601834, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-4.5393399032710254e-7, 1.3698188331943788e-5, 1.6280486142972263e-6, -3.909096301139726e-6, -1.962014616246218e-8, -2.774837162944106e-6, -8.810090833138735e-6, 6.413414874719175e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.360910697200367e-7, 1.3336599489335373e-5, 1.6388736249077944e-6, -3.729760878127083e-6, -1.3936233189861308e-8, -2.789483473724875e-6, -8.530196192734305e-6, 5.239947332529573e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.112236429566859e-7, 1.2928602880406686e-5, 1.6638737331521862e-6, -3.495828416612392e-6, 8.510694779447149e-9, -2.877251964573447e-6, -8.194125001642082e-6, 3.7744171744567126e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.803623546684061e-7, 1.4226226965850083e-5, 1.6073955573601835e-6, -4.1832190598140815e-6, -5.515945755949383e-8, -2.7025602100143204e-6, -9.229511215988132e-6, 8.171897748341684e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.352115821756602e-7, 1.3324808633179346e-5, 1.6426525309096729e-6, -3.7152647099583394e-6, 5.509941925093161e-9, -2.8259422161296737e-6, -8.513550568768193e-6, 5.169979710177551e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.803623546684061e-7, 1.4226226965850083e-5, 1.6073955573601835e-6, -4.183215566205124e-6, -5.515945755949383e-8, -2.7025637036232777e-6, -9.229511215988132e-6, 8.171897748341684e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.9300385598593554e-7, 1.2463646801508546e-5, 1.6650075123366042e-6, -3.296806867675696e-6, -2.1405340408056132e-10, -2.8248427958504918e-6, -7.854481348646437e-6, 2.406946077174912e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.09646228365326692 0.0 … -3.18356510575768e-5 0.0; 0.07999999999992724 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-1.3106365447248778 0.0 … -0.0001025200344534621 0.0; -0.19656342971931545 -1.0 … -2.0151689587114896e-5 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [1.2872124683872686e-8, -8.504036313500578e-8, 2.5975295642013652e-8, 1.0004687466032931e-7, 3.0717550004876573e-8, -1.3399345064950973e-7, 1.0294126714034768e-7, -5.351929834645588e-8, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.012474975710286162, -0.032726666143615364, 0.02400953848186959, 0.08104556860601367, 0.030694653204477413, -0.105639669885852, 0.000103066171333646, -0.045880209069608636, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [969146.5874251431, 407851.7975656623, 939977.7322138926, 810075.965702804, 999254.6019980264, 788394.2787784197, 1001.2133539518998, 861519.7053105559, 4761.9047619047615, 4975.124378109453  …  166666.66666666666, 111111.11111111111, 62500.0, 12345.679012345678, 47619.04761904761, 47619.04761904761, 47619.04761904761, 90909.09090909091, 38461.53846153846, 38461.53846153846], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f24c4d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f24c5b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f24c5d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f24c690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.183565105133291e-5, 0.0014518710128744855, 6.385498903760128e-5, 0.00023445212836603792, 7.459540346207294e-7, 0.0002684008838185046, 0.9977881164917443, 0.00016073955573601834, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 1.1128889748488622, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f24c4d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f24c5b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f24c5d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f24c690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 89.00524159493631, [1.0, 1.0, 0.01, 1.1128889748488622, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [-4.393398761890881e-7, 1.3432304143697128e-5, 1.6517190145925795e-6, -3.7375677111673533e-6, 7.288541907543373e-8, -2.9506087796135614e-6, -8.569907903381524e-6, 5.40515692985057e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([-1.3106365447248778 0.0 … -0.0001025200344534621 0.0; -0.19656342971931545 -1.0 … -2.0151689587114896e-5 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [-4.393398761890881e-7, 1.3432304143697128e-5, 1.6517190145925795e-6, -3.7375677111673533e-6, 7.288541907543373e-8, -2.9506087796135614e-6, -8.569907903381524e-6, 5.40515692985057e-7, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.2872124683872686e-8, -8.504036313500578e-8, 2.5975295642013652e-8, 1.0004687466032931e-7, 3.0717550004876573e-8, -1.3399345064950973e-7, 1.0294126714034768e-7, -5.351929834645588e-8, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}([-1.3106365447248778 0.0 … -0.0001025200344534621 0.0; -0.19656342971931545 -1.0 … -2.0151689587114896e-5 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10  …  13, 14, 15, 16, 17, 18, 19, 20, 21, 22], 0), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10  …  13, 14, 15, 16, 17, 18, 19, 20, 21, 22]), false, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([969146.5874251431 0.0 … 0.0 0.0; 0.0 407851.7975656623 … 0.0 0.0; … ; 0.0 0.0 … 38461.53846153846 0.0; 0.0 0.0 … 0.0 38461.53846153846]), [969146.5874251431 0.0 … 0.0 0.0; 0.0 407851.7975656623 … 0.0 0.0; … ; 0.0 0.0 … 38461.53846153846 0.0; 0.0 0.0 … 0.0 38461.53846153846], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([1.2872124683872686e-8, -8.504036313500578e-8, 2.5975295642013652e-8, 1.0004687466032931e-7, 3.0717550004876573e-8, -1.3399345064950973e-7, 1.0294126714034768e-7, -5.351929834645588e-8, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.803623546684061e-7, 1.4226226965850083e-5, 1.6073955573601835e-6, -4.1832190598140815e-6, -5.515945755949383e-8, -2.7025602100143204e-6, -9.229511215988132e-6, 8.171897748341684e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [-4.803623546684061e-7, 1.4226226965850083e-5, 1.6073955573601835e-6, -4.183215566205124e-6, -5.515945755949383e-8, -2.7025637036232777e-6, -9.229511215988132e-6, 8.171897748341684e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.803623546684061e-7, 1.4226226965850083e-5, 1.6073955573601835e-6, -4.183215566205124e-6, -5.515945755949383e-8, -2.7025637036232777e-6, -9.229511215988132e-6, 8.171897748341684e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(13, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), true, 10, 3, 9//10, 9//10, 2, false, 5), 2)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  277
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    3
Number of linear solves:                           9
Number of Jacobians created:                       3
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                1041
Number of accepted steps:                          33
Number of rejected steps:                          1
Maximum eigenvalue recorded:                       1, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1  …  1, 1, 1, 1, 1, 1, 1, 2, 2, 2], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [100.0], [[[2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f2540b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f2540d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f2540f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f254110, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], (100.0, 100.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f2540b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f2540d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f2540f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f254110, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [100.0], [[[2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-3.9300385598593554e-7, 1.2463646801508546e-5, 1.6650075123366042e-6, -3.296806867675696e-6, 4.395246988978749e-7, -3.2645815481524473e-6, -7.854481348646437e-6, 2.406946077174912e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-3.9300385598593554e-7, 1.2463646801508546e-5, 1.6650075123366042e-6, -3.296806867675696e-6, 4.395246988978749e-7, -3.2645815481524473e-6, -7.854481348646437e-6, 2.406946077174912e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [5.07217937e-315 5.07216459e-315 … 0.0 6.9518821016725e-310; 5.0e-324 5.0e-324 … NaN 1.0e-323; … ; 5.072165933e-315 5.07215115e-315 … 0.0 0.0; 5.0e-324 5.0e-324 … 1.88194637105384e-22 NaN], [5.0726981e-315 5.07268332e-315 … 5.07240245e-315 5.07238767e-315; 5.0e-324 5.0e-324 … 5.0e-324 5.0e-324; … ; 5.07268466e-315 5.07266988e-315 … 5.072389014e-315 5.07237423e-315; 5.0e-324 5.0e-324 … 5.0e-324 5.0e-324], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f2540b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f2540d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f2540f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f254110, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [2.704093509715532e-5, 0.0015985037022048238, 8.187400859989344e-5, 0.00019344430860237244, 5.927285176215742e-7, 0.00023773118694998179, 0.9976943290454574, 0.0001665007512336604, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2890, Ptr{Nothing} @0x00007ff85f2540b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8a97b2ab0, Ptr{Nothing} @0x00007ff85f2540d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2cd0, Ptr{Nothing} @0x00007ff85f2540f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8a97b2f10, Ptr{Nothing} @0x00007ff85f254110, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 100.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([5.0726981e-315 5.07268332e-315 … 5.07240245e-315 5.07238767e-315; 5.0e-324 5.0e-324 … 5.0e-324 5.0e-324; … ; 5.07268466e-315 5.07266988e-315 … 5.072389014e-315 5.07237423e-315; 5.0e-324 5.0e-324 … 5.0e-324 5.0e-324], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 100.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  3
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                0
Number of accepted steps:                          0
Number of rejected steps:                          0, [1], SciMLBase.ReturnCode.Success)), :XTOL_REACHED)

Question 2

Ingest SIDARTHE-V

This is a handwritten verison of the SIDARTHE-V model, built from the exported SIDARTHE SBML and then manually handcorrected to be the SIDARTHE-V model. This should swap to the TA1/TA2 model form when available.

sysv = eval(quote
                var"##iv#608" = (@variables(t))[1]
                var"##sts#609" = (collect)(@variables(Infected(t), Healed(t), Extinct(t),
                                                      Diagnosed(t), Ailing(t),
                                                      Recognized(t), Susceptible(t),
                                                      Threatened(t), Vaccinated(t),
                                                      alpha(t), epsilon(t), gamma(t),
                                                      beta(t), delta(t), mu(t), nu(t),
                                                      lambda(t), rho(t), kappa(t), xi(t),
                                                      sigma(t), zeta(t), eta(t)))
                var"##ps#610" = (collect)(@parameters(ModelValue_21, epsilon_modifier, tau,
                                                      theta, ModelValue_19, ModelValue_20,
                                                      Event_trigger_Fig4b,
                                                      Event_trigger_Fig3d, ModelValue_16,
                                                      Event_trigger_Fig3b, alpha_modifier,
                                                      Event_trigger_Fig4d, ModelValue_17,
                                                      ModelValue_18, Italy, tau1, phi))
                var"##eqs#611" = [(~)((Differential(t))(Infected),
                                      (+)((*)((+)((/)((*)(Infected, alpha), Italy),
                                                  (/)((*)(Diagnosed, beta), Italy),
                                                  (/)((*)(Ailing, gamma), Italy),
                                                  (/)((*)(Recognized, delta), Italy)),
                                              Susceptible), (*)(-1 // 1, Infected, epsilon),
                                          (*)(-1 // 1, Infected, lambda),
                                          (*)(-1 // 1, Infected, zeta)))
                                  (~)((Differential(t))(Healed),
                                      (+)((*)(Ailing, kappa), (*)(Diagnosed, rho),
                                          (*)(Infected, lambda), (*)(Recognized, xi),
                                          (*)(Threatened, sigma)))
                                  (~)((Differential(t))(Extinct),
                                      (*)(tau, Threatened) + tau1 * Recognized)
                                  (~)((Differential(t))(Diagnosed),
                                      (+)((*)(Infected, epsilon),
                                          (*)(-1 // 1, Diagnosed, eta),
                                          (*)(-1 // 1, Diagnosed, rho)))
                                  (~)((Differential(t))(Ailing),
                                      (+)((*)(Infected, zeta), (*)(-1 // 1, theta, Ailing),
                                          (*)(-1 // 1, Ailing, kappa),
                                          (*)(-1 // 1, Ailing, mu)))
                                  (~)((Differential(t))(Recognized),
                                      (+)((*)(theta, Ailing), (*)(Diagnosed, eta),
                                          (*)(-1 // 1, Recognized, nu),
                                          (*)(-1 // 1, Recognized, xi)))
                                  (~)((Differential(t))(Susceptible),
                                      (*)((+)((/)((*)(-1, Infected, alpha), Italy),
                                              (/)((*)(-1, Diagnosed, beta), Italy),
                                              (/)((*)(-1, Ailing, gamma), Italy),
                                              (/)((*)(-1, Recognized, delta), Italy)) -
                                          phi * Susceptible,
                                          Susceptible))
                                  (~)((Differential(t))(Threatened),
                                      (+)((*)(Ailing, mu), (*)(Recognized, nu),
                                          (*)(-1 // 1, tau, Threatened),
                                          (*)(-1 // 1, Threatened, sigma)))
                                  Differential(t)(Vaccinated) ~ phi * Susceptible
                                  (~)((Differential(t))(alpha), -0.0);
                                  (~)((Differential(t))(epsilon), -0.0);
                                  (~)((Differential(t))(gamma), -0.0);
                                  (~)((Differential(t))(beta), -0.0);
                                  (~)((Differential(t))(delta), -0.0);
                                  (~)((Differential(t))(mu), -0.0);
                                  (~)((Differential(t))(nu), -0.0);
                                  (~)((Differential(t))(lambda), -0.0);
                                  (~)((Differential(t))(rho), -0.0);
                                  (~)((Differential(t))(kappa), -0.0);
                                  (~)((Differential(t))(xi), -0.0);
                                  (~)((Differential(t))(sigma), -0.0);
                                  (~)((Differential(t))(zeta), -0.0);
                                  (~)((Differential(t))(eta), -0.0)]
                var"##defs#612" = (Dict)((Pair)(delta, 0.011), (Pair)(xi, 0.017),
                                         (Pair)(Diagnosed, 3.33333333e-7),
                                         (Pair)(Event_trigger_Fig3b, 0.0),
                                         (Pair)(Extinct, 0.0), (Pair)(kappa, 0.017),
                                         (Pair)(zeta, 0.125), (Pair)(eta, 0.125),
                                         (Pair)(nu, 0.027), (Pair)(Healed, 0.0),
                                         (Pair)(Infected, 3.33333333e-6),
                                         (Pair)(ModelValue_16, 0.0),
                                         (Pair)(alpha_modifier, 1.0), (Pair)(Italy, 1.0),
                                         (Pair)(Event_trigger_Fig3d, 0.0),
                                         (Pair)(ModelValue_20, 1.0), (Pair)(sigma, 0.017),
                                         (Pair)(Threatened, 0.0), (Pair)(lambda, 0.034),
                                         (Pair)(alpha, 0.57),
                                         (Pair)(Event_trigger_Fig4b, 0.0),
                                         (Pair)(ModelValue_17, 0.0),
                                         (Pair)(Event_trigger_Fig4d, 0.0),
                                         (Pair)(Susceptible, 0.9999963),
                                         (Pair)(beta, 0.011),
                                         (Pair)(Recognized, 3.33333333e-8),
                                         (Pair)(rho, 0.034), (Pair)(mu, 0.017),
                                         (Pair)(epsilon, 0.171),
                                         (Pair)(Ailing, 1.66666666e-8),
                                         (Pair)(gamma, 0.456), (Pair)(ModelValue_19, 0.0),
                                         (Pair)(ModelValue_21, 1.0), (Pair)(theta, 0.371),
                                         (Pair)(epsilon_modifier, 1.0), (Pair)(tau, 0.01),
                                         (Pair)(ModelValue_18, 0.0),
                                         Vaccinated => 0,
                                         tau1 => 0.0200,
                                         phi => 0.0025)
                var"##iv#613" = (@variables(t))[1]
                (ODESystem)(var"##eqs#611", var"##iv#613", var"##sts#609", var"##ps#610";
                            defaults = var"##defs#612", name = Symbol("##SBML#530"),
                            checks = false)
            end)
# todo set the event flags
# todo validate the new params
probv = ODEProblem(sysv, [], (0, 100))
solv = solve(probv, Tsit5())
plot(solv)
plot(solv, idxs = [og_states; Vaccinated])
plot(solt1; idxs = sum(idart))

xmax, xmaxval = get_max_t(probv, sum(idart) * ITALY_POPULATION)
xmax, xmaxval = get_max_t(probv, sum(idart))

@test isapprox(xmax, 47; atol = 5)
@test isapprox(xmaxval, 0.6; atol = 0.1)
Test Passed

Setup the Parameters

Set the same initial values and parameter settings in 1.b.i. Let V(t=0) = 0, τ (in SIDARTHE) = τ2 (in SIDDARTHE-V), and τ1 = (1/3)*τ2 (reflecting the fact that the mortality rate for critical conditions (state T), will always be larger than for other infected states). Assume that the vaccination rate psi is 0 to start with. The SIDARTHE-V model allows for three main types of interventions: (1) Those that impact the transmission parameters (α, β, γ and δ) – social distancing, masking, lockdown; (2) Those that impact the detection parameters (ε, θ) – testing and contact tracing; (3) Those that impact the vaccination rate psi – vaccination campaigns. Assume previously stated constraints: θ >= 2* ε, and τ1 = (1/3)*τ2.

b.i

Let’s say our goal is to ensure that the total infected population (sum over all the infected states I, D, A, R, T) never rises above 1/3 of the total population, over the course of the next 100 days. If you could choose only a single intervention (affecting only one parameter), which intervention would let us meet our goal, with minimal change to the intervention parameter? Assume that the intervention will be implemented after one month (t = day 30), and will stay constant after that, over the remaining time period (i.e. the following 70 days). What are equivalent interventions of the other two intervention types, that would have the same impact on total infections?

This is a straightforward usage of the EasyModelAnalysis.optimal_parameter_intervention_for_threshold function designed during the ASKEM hackathon. It was able to be used without modification. However, a modeling decision had to be made to define what the "intervention parameters" are. A data request back to TA1/TA2 has been made to define which parameters should be in this set.

intervention_parameters = [theta] # Need to figure out what these should be
[p => EasyModelAnalysis.optimal_parameter_intervention_for_threshold(prob,
                                                                     threshold_observable,
                                                                     0.33,
                                                                     p -
                                                                     ModelingToolkit.defaults(sys)[p],
                                                                     [p], [0.0],
                                                                     3 .* [
                                                                         ModelingToolkit.defaults(sys)[p],
                                                                     ],
                                                                     (30.0, 100.0);
                                                                     maxtime = 60)
 for p in intervention_parameters]
1-element Vector{Pair{Num, Tuple{Dict{Num, Float64}, Tuple{ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}}, Symbol}}}:
 theta => (Dict(theta => 1.3002011468348265e-17), (ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], nothing, nothing, [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff8574dfc10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff8574dfc30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff8574dfc50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff8574dfc70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 30.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff8574dfc10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff8574dfc30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff8574dfc50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff8574dfc70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-5.390961837841079e-10, 9.572844952319827e-11, -1.2202406872160754e-12, 2.4494367647022593e-10, 1.825142725703532e-9, -1.8512669504982965e-9, 1.8701730533659872e-10, 3.8751217926882333e-11, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0005099821840077465, 0.0004124041986338562, 3.4583716924347714e-6, 0.0004593135827010452, 4.313325575975515e-5, 0.0002733259261631827, 0.9982565817891844, 4.1817358520308544e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-0.0003500785030051232, 6.719860876612745e-5, -1.2159215845920634e-6, 0.00016660604101897576, 0.0017496031168409653, -0.0014480739075501772, 1.871171644922294e-7, 3.716927369484967e-5, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [51.251251251251254 52.352352352352355 … 73.27327327327328 74.37437437437437; 0.22531790099913626 0.21515834022649713 … 0.15831627405809917 0.15749908582977973; … ; 52.252252252252255 53.353353353353356 … 74.27427427427428 75.37537537537537; 0.21600870052579454 0.2073687001115056 … 0.15757102732713724 0.15680363132361438], [0.0 1.1011011011011012 … 22.02202202202202 23.123123123123122; 0.0 7.297237827922823e-9 … 9.649493658125769e-5 0.00013467295561643693; … ; 1.001001001001001 2.1021021021021022 … 23.023023023023022 24.124124124124123; 6.058266890249826e-9 2.806748683188364e-8 … 0.00013066814985369322 0.0001819715317708678], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff8574dfc10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff8574dfc30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff8574dfc50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff8574dfc70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff8574dfc10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff8574dfc30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff8574dfc50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff8574dfc70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 0.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([0.0 1.1011011011011012 … 22.02202202202202 23.123123123123122; 0.0 7.297237827922823e-9 … 9.649493658125769e-5 0.00013467295561643693; … ; 1.001001001001001 2.1021021021021022 … 23.023023023023022 24.124124124124123; 6.058266890249826e-9 2.806748683188364e-8 … 0.00013066814985369322 0.0001819715317708678], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  73
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                434
Number of accepted steps:                          11
Number of rejected steps:                          0
Maximum eigenvalue recorded:                       0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004546648751243862, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.00013213585844144395, 0.0003458937026947669, 0.9975014616994561, 6.750419473306666e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014164, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186496, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014164, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186496, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003784592309278039, 0.0011910838104418862, 1.2649225679806427e-5, 0.0009705295452030807, 0.0001794430470747409, 0.00040907212176226543, 0.996756852366504, 0.00010192731906927757, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003441483145574538, 0.0015521442397300183, 1.9378589482441413e-5, 0.0011104081898286838, 0.00020009068501046138, 0.00047057943093203875, 0.9961685794664472, 0.00013468775067459598, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.0016314087357181845, 2.1071040040975346e-5, 0.001132452731967463, 0.00020364851759223086, 0.00048443166060482476, 0.9960441518033951, 0.00014204072138594638, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.0016314087357181845, 2.1071040040975346e-5, 0.001132452731967463, 0.00020364851759223086, 0.00048443166060482476, 0.9960441518033951, 0.00014204072138594638, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003354512889410498, 0.0021172415698888806, 3.300016977876121e-5, 0.0012329250211764254, 0.0002213594274654489, 0.0005660469222731289, 0.9953063345643973, 0.00018765770274191653, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003494356258730632, 0.002765507430556316, 5.2586389271923995e-5, 0.0013282194361467327, 0.00023999473046272182, 0.0006609669332212112, 0.9943552629585674, 0.00024804316256362357, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00037716899695032437, 0.0036194995158879673, 8.353961808919768e-5, 0.0014396540498327786, 0.00026209749093517525, 0.0007650109780188403, 0.9931291877941726, 0.00032385822277603715, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812255, 0.00481932044139993, 0.00013440229007386734, 0.0015939327322634525, 0.0002919384547513805, 0.0008872113754603068, 0.9914330082058364, 0.0004216088057963696, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.4377352811887173e-5, 9.739007505882596e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.4247560684373934e-5, 9.942128953996065e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.42159577997798e-5, 9.991296286639383e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.3798387505866724e-5, 1.0581395920837418e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788658e-5, 1.1130268062387151e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.7285175888975495e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.2231218330822194e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673232e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.2038774428257157e-5, 1.3325202141868899e-5, -0.00011442804351306558, 4.3815510813100145e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4708714122576545e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020452, 4.392631735360229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.215520929319303e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.215520929319303e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.439894710416348e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.206213251660915e-5, 1.3164312001116899e-5, -0.00011528830739604378, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448499195e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.169372901319547e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534868e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750384e-7, 5.9117884881075874e-5, 7.454223296072418e-7, 2.6527972723029832e-5, 1.1656122270334621e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.690363581281162e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526543e-7, 5.91490816404907e-5, 7.468998468271742e-7, 2.648452678093185e-5, 1.1646959416778965e-5, 1.3837981647446762e-5, -0.0001171303877311755, 4.695770051747409e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686801e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169564e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.215520929319303e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.439894710416348e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.206213251660915e-5, 1.3164312001116899e-5, -0.00011528830739604378, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448499195e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.169372901319547e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534868e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750384e-7, 5.9117884881075874e-5, 7.454223296072418e-7, 2.6527972723029832e-5, 1.1656122270334621e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.690363581281162e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526543e-7, 5.91490816404907e-5, 7.468998468271742e-7, 2.648452678093185e-5, 1.1646959416778965e-5, 1.3837981647446762e-5, -0.0001171303877311755, 4.695770051747409e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686801e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169564e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725191e-5, 6.244188484067264e-5, 7.469096530800149e-7, 5.689211489718052e-5, 7.1173472629231915e-6, 5.954610288730182e-6, -0.00011715017485368011, 5.219268958345474e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8679956885505797e-5, 6.22405041223763e-5, 7.895866230347866e-7, 5.1328174053501416e-5, 6.520575264262388e-6, 6.947186299149548e-6, -0.00011439957682586568, 5.253507349047036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.662236119205141e-5, 6.22038313161045e-5, 8.341723276865514e-7, 4.6884266780823446e-5, 6.042018654988584e-6, 7.674396605223633e-6, -0.00011232120010822006, 5.3048756154447685e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282173e-6, 6.209775074490816e-5, 9.933844169656903e-7, 3.164071366681583e-5, 4.403797925087174e-6, 1.0241153998189888e-5, -0.00010524984542398168, 5.449107557297119e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.064213048175751e-6, 6.19240080765143e-5, 1.0177684176149202e-6, 2.828332830148783e-5, 4.0468308336575935e-6, 1.0920584575517398e-5, -0.00010356484456112743, 5.436537404511155e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.711168592390285e-6, 6.188798984686695e-5, 1.0238433232401114e-6, 2.7501378047114883e-5, 3.9636354793442555e-6, 1.1076758694530476e-5, -0.00010317677669661676, 5.434339897910372e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.661024140204761e-6, 6.247690594571884e-5, 1.0192731906927756e-6, 3.201801665142214e-5, 4.43707545510235e-6, 9.945714368397733e-6, -0.00010576904129277543, 5.533079821646357e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.661024140204761e-6, 6.247690594571884e-5, 1.0192731906927756e-6, 3.201801665142214e-5, 4.43707545510235e-6, 9.945714368397733e-6, -0.00010576904129277543, 5.533079821646357e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874088e-6, 6.266998026886615e-5, 1.0700320180159662e-6, 2.892371256096627e-5, 4.101534709033812e-6, 1.0360687173111185e-5, -0.00010454187870652219, 5.600984229402898e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.028653492418798e-6, 6.298079881956723e-5, 1.1236652349036143e-6, 2.6563763273362875e-5, 3.844067696057177e-6, 1.0612910724855142e-5, -0.00010377172107393946, 5.675168817612229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.9431506526239755e-6, 6.403309190740928e-5, 1.3137303143827417e-6, 1.816528796329835e-5, 2.9323462419910563e-6, 1.1625115073342836e-5, -0.00010102022165751395, 5.893800809713659e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.9583195057088644e-6, 6.405690427151265e-5, 1.341573690629332e-6, 1.603062769786761e-5, 2.7045361073586963e-6, 1.2015165543930656e-5, -0.00010009114084026712, 5.900653034677045e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946414833e-6, 6.406779907089838e-5, 1.3485482675961318e-6, 1.5535410164222664e-5, 2.6516542735099303e-6, 1.2103970379972239e-5, -9.98812418204991e-5, 5.90278965894125e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.17069419466096e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.8861294369199983e-5, 3.0011686836434225e-6, 1.1289924663095744e-5, -0.00010179454174536245, 5.965661930572352e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.17069419466096e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.8861294369199983e-5, 3.0011686836434225e-6, 1.1289924663095744e-5, -0.00010179454174536245, 5.965661930572352e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278369e-6, 6.45926873823788e-5, 1.3586268050351643e-6, 1.8569239599871093e-5, 2.9690069327848955e-6, 1.1304968594741934e-5, -0.00010175620551961378, 5.980244999080272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435291e-6, 6.46904515477578e-5, 1.3708008355613254e-6, 1.8285994414260024e-5, 2.9377766981512843e-6, 1.1317267248391083e-5, -0.000101727729042562, 5.995148280875784e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988143e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.7349139697843916e-5, 2.8344163610915387e-6, 1.1353061159745518e-5, -0.0001016552013158799, 6.046032660905858e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.418913644671904e-6, 1.722097026318075e-5, 2.8202826330857108e-6, 1.1357880226450346e-5, -0.00010164694921842059, 6.053006202835821e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251637e-5, 1.4203920273976042e-6, 1.7189459488461186e-5, 2.816806444070734e-6, 1.135899065482253e-5, -0.00010164518175989666, 6.0547455231883495e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792848763e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.720408948586618e-5, 2.8183547598207524e-6, 1.1355649533987885e-5, -0.00010165368856272935, 6.054905946590178e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.17069419466096e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.8861294369199983e-5, 3.0011686836434225e-6, 1.1289924663095744e-5, -0.00010179454174536245, 5.965661930572352e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278369e-6, 6.45926873823788e-5, 1.3586268050351643e-6, 1.8569239599871093e-5, 2.9690069327848955e-6, 1.1304968594741934e-5, -0.00010175620551961378, 5.980244999080272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435291e-6, 6.46904515477578e-5, 1.3708008355613254e-6, 1.8285994414260024e-5, 2.9377766981512843e-6, 1.1317267248391083e-5, -0.000101727729042562, 5.995148280875784e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988143e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.7349139697843916e-5, 2.8344163610915387e-6, 1.1353061159745518e-5, -0.0001016552013158799, 6.046032660905858e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.418913644671904e-6, 1.722097026318075e-5, 2.8202826330857108e-6, 1.1357880226450346e-5, -0.00010164694921842059, 6.053006202835821e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251637e-5, 1.4203920273976042e-6, 1.7189459488461186e-5, 2.816806444070734e-6, 1.135899065482253e-5, -0.00010164518175989666, 6.0547455231883495e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792848763e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.720408948586618e-5, 2.8183547598207524e-6, 1.1355649533987885e-5, -0.00010165368856272935, 6.054905946590178e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.6345113704783046e-6, 6.509598189380692e-5, 1.4204072138594638e-6, 1.7201918253106893e-5, 2.8181279063728728e-6, 1.1356210178017712e-5, -0.00010131298269677685, 6.054848622091291e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8225254116505686e-6, 6.565300412974889e-5, 1.4910670830441572e-6, 1.5683669165386014e-5, 2.649181401902913e-6, 1.1394231623052972e-5, -0.0001011872566940216, 6.1386287025372265e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.239471140732374e-6, 6.630711724966682e-5, 1.5659586437215598e-6, 1.4679308907307285e-5, 2.5358540913661115e-6, 1.133789946118663e-5, -0.00010140570351857912, 6.219036306063098e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196749849e-6, 6.849262337610679e-5, 1.8286967882947808e-6, 1.0491185041783926e-5, 2.072600440682843e-6, 1.1405880427298398e-5, -0.00010181477816151659, 6.452515767674861e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.817003246126622e-6, 6.867509742714563e-5, 1.8657125420428308e-6, 8.938851549709708e-6, 1.9062886391373121e-6, 1.1655441508056932e-5, -0.00010132526056205591, 6.4668656498368695e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9909727761468336e-6, 6.87242881987711e-5, 1.8750199032900143e-6, 8.578561032666879e-6, 1.8676916733869766e-6, 1.171234746673838e-5, -0.0001012192929295205, 6.470411878520316e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685358158e-7, 6.911930756100322e-5, 1.8765770274191654e-6, 1.1608631835270818e-5, 2.188218254493672e-6, 1.1011483249851126e-5, -0.00010296813899555601, 6.5084251989821935e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685358158e-7, 6.911930756100322e-5, 1.8765770274191654e-6, 1.1608631835270818e-5, 2.188218254493672e-6, 1.1011483249851126e-5, -0.00010296813899555601, 6.5084251989821935e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0581833025551455e-6, 7.000873564525536e-5, 1.97090430352413e-6, 1.1041532286134808e-5, 2.1231692746669804e-6, 1.0873529029797572e-5, -0.00010366058158624438, 6.5845277443103834e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967757e-6, 7.097885861059481e-5, 2.070459274051628e-6, 1.0777110067781202e-5, 2.0920032557741183e-6, 1.0703056519773486e-5, -0.00010459488829557593, 6.650576332703899e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5670687150624683e-6, 7.426659450857287e-5, 2.4161271355654215e-6, 9.077497029896229e-6, 1.9049283907374456e-6, 1.0383100697667033e-5, -0.0001074610030578011, 6.845686580299626e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0872173256384247e-6, 7.463181445234823e-5, 2.463377322795021e-6, 8.056894192924406e-6, 1.7959623655459212e-6, 1.0520621419227358e-5, -0.00010742184828529668, 6.865961206817316e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.20986685830691e-6, 7.472513060550689e-5, 2.475269994758559e-6, 7.817653231485468e-6, 1.7704719397470676e-6, 1.0552885234463163e-5, -0.00010742185050511379, 6.870572640845731e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639095224e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009675e-5, 2.0160381938703664e-6, 1.0071643240925928e-5, -0.00010875999135519381, 6.873598590747469e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639095224e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009675e-5, 2.0160381938703664e-6, 1.0071643240925928e-5, -0.00010875999135519381, 6.873598590747469e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3509161270041e-6, 7.621771980862897e-5, 2.600305423656363e-6, 1.0084374569886806e-5, 2.0127317355982054e-6, 9.89798481309654e-6, -0.00011008948113996172, 6.9254486620907345e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.4591655198684037e-6, 7.748946979403403e-5, 2.7257862280707347e-6, 1.0178529912786255e-5, 2.024993546693045e-6, 9.73803395773115e-6, -0.00011158155733258173, 6.965578373398106e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0494844367188507e-6, 8.188539161621204e-5, 3.1582791369681053e-6, 9.993973383839572e-6, 2.0159182653323708e-6, 9.362936842906563e-6, -0.00011656212391371753, 7.096140231740038e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569794064e-6, 8.245727189395119e-5, 3.2165811689217054e-6, 9.528074400218544e-6, 1.9673510758431426e-6, 9.39629229408234e-6, -0.00011701868780611433, 7.1213346161180155e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3994294395173133e-6, 8.260094116601596e-5, 3.2312297514866366e-6, 9.417226560425238e-6, 1.955883797867542e-6, 9.405183596079168e-6, -0.0001171368618965733, 7.126967585181449e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8303811618864994e-6, 8.27473523595222e-5, 3.2385822277603715e-6, 1.064936714758984e-5, 2.0904951775732e-6, 9.215967015160061e-6, -0.00011786692523173544, 7.0947801422432615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.8303811618864994e-6, 8.27473523595222e-5, 3.2385822277603715e-6, 1.064936714758984e-5, 2.0904951775732e-6, 9.215967015160061e-6, -0.00011786692523173544, 7.0947801422432615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9117206686775726e-6, 8.436598051424243e-5, 3.3945074240277044e-6, 1.0840251678846564e-5, 2.1173640731864716e-6, 9.092179744014605e-6, -0.00011984550408133562, 7.123499978340287e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644512943e-6, 8.607459783329971e-5, 3.5565902453176446e-6, 1.1072226221372698e-5, 2.1509344845000202e-6, 9.006243060249819e-6, -0.0001219755537848939, 7.142962375702704e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3002272093361765e-6, 9.207177358709429e-5, 4.113973517449834e-6, 1.160338527042417e-5, 2.239530335579115e-6, 8.80022136907761e-6, -0.00012936091057029548, 7.231799281334296e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.449721973999257e-6, 9.291085454654512e-5, 4.189225547624123e-6, 1.1466507503527065e-5, 2.2281170507316752e-6, 8.786484838099051e-6, -0.00013029477627844093, 7.263864817914643e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4865017622316176e-6, 9.31207215121725e-5, 4.208080051842247e-6, 1.1432529280426881e-5, 2.2253735253084884e-6, 8.785043566324615e-6, -0.00013052942369808944, 7.271173999783094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719284034e-6, 9.316528819396454e-5, 4.216088057963696e-6, 1.199189926438974e-5, 2.2905822939919816e-6, 8.795920165475587e-6, -0.0001308742848017022, 7.211502153988252e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719284034e-6, 9.316528819396454e-5, 4.216088057963696e-6, 1.199189926438974e-5, 2.2905822939919816e-6, 8.795920165475587e-6, -0.0001308742848017022, 7.211502153988252e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2360584634912478e-6, 9.434383308632246e-5, 4.323681765271147e-6, 1.214253707500277e-5, 2.3143625813368713e-6, 8.783895269883944e-6, -0.00013236487209522077, 7.220503853912329e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.269024238866128e-6, 9.557757659294193e-5, 4.434896743324184e-6, 1.2297330964808952e-5, 2.339380350639019e-6, 8.78451320426218e-6, -0.00013393197818307973, 7.229256088237331e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733154e-6, 9.989873927378853e-5, 4.819415672655295e-6, 1.2822021030554699e-5, 2.4255436188422044e-6, 8.806777333014051e-6, -0.00013942390883014616, 7.26636080461807e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.40485251024165e-6, 0.00010051367244473639, 4.8730844215414464e-6, 1.2890400624449e-5, 2.436936252856176e-6, 8.807535014863811e-6, -0.0001402017474383279, 7.275266169639436e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032148724e-6, 0.00010066745139688813, 4.8864867192942156e-6, 1.2907421745726535e-5, 2.4397924685996156e-6, 8.808165993311962e-6, -0.00014039645376762963, 7.277405740594302e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3991475127271166e-6, 0.00010066184193750251, 4.886936963906229e-6, 1.291810350868341e-5, 2.441853635222332e-6, 8.829082701415289e-6, -0.00014040476778800424, 7.267801528547368e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755e950, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755e970, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755e990, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755e9b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], (30.0, 100.0), [1.0, 1.0, 0.01, 1.3002011468348265e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755e950, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755e970, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755e990, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755e9b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004546648751243862, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.00013213585844144395, 0.0003458937026947669, 0.9975014616994561, 6.750419473306666e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014164, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186496, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014164, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186496, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003784592309278039, 0.0011910838104418862, 1.2649225679806427e-5, 0.0009705295452030807, 0.0001794430470747409, 0.00040907212176226543, 0.996756852366504, 0.00010192731906927757, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003441483145574538, 0.0015521442397300183, 1.9378589482441413e-5, 0.0011104081898286838, 0.00020009068501046138, 0.00047057943093203875, 0.9961685794664472, 0.00013468775067459598, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.0016314087357181845, 2.1071040040975346e-5, 0.001132452731967463, 0.00020364851759223086, 0.00048443166060482476, 0.9960441518033951, 0.00014204072138594638, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.0016314087357181845, 2.1071040040975346e-5, 0.001132452731967463, 0.00020364851759223086, 0.00048443166060482476, 0.9960441518033951, 0.00014204072138594638, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003354512889410498, 0.0021172415698888806, 3.300016977876121e-5, 0.0012329250211764254, 0.0002213594274654489, 0.0005660469222731289, 0.9953063345643973, 0.00018765770274191653, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003494356258730632, 0.002765507430556316, 5.2586389271923995e-5, 0.0013282194361467327, 0.00023999473046272182, 0.0006609669332212112, 0.9943552629585674, 0.00024804316256362357, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00037716899695032437, 0.0036194995158879673, 8.353961808919768e-5, 0.0014396540498327786, 0.00026209749093517525, 0.0007650109780188403, 0.9931291877941726, 0.00032385822277603715, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812255, 0.00481932044139993, 0.00013440229007386734, 0.0015939327322634525, 0.0002919384547513805, 0.0008872113754603068, 0.9914330082058364, 0.0004216088057963696, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.4377352811887173e-5, 9.739007505882596e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.4247560684373934e-5, 9.942128953996065e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.42159577997798e-5, 9.991296286639383e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.3798387505866724e-5, 1.0581395920837418e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788658e-5, 1.1130268062387151e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.7285175888975495e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.2231218330822194e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673232e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.2038774428257157e-5, 1.3325202141868899e-5, -0.00011442804351306558, 4.3815510813100145e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4708714122576545e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020452, 4.392631735360229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.215520929319303e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.215520929319303e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.439894710416348e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.206213251660915e-5, 1.3164312001116899e-5, -0.00011528830739604378, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448499195e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.169372901319547e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534868e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750384e-7, 5.9117884881075874e-5, 7.454223296072418e-7, 2.6527972723029832e-5, 1.1656122270334621e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.690363581281162e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526543e-7, 5.91490816404907e-5, 7.468998468271742e-7, 2.648452678093185e-5, 1.1646959416778965e-5, 1.3837981647446762e-5, -0.0001171303877311755, 4.695770051747409e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686801e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169564e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.215520929319303e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.439894710416348e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.206213251660915e-5, 1.3164312001116899e-5, -0.00011528830739604378, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448499195e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.169372901319547e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534868e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750384e-7, 5.9117884881075874e-5, 7.454223296072418e-7, 2.6527972723029832e-5, 1.1656122270334621e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.690363581281162e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526543e-7, 5.91490816404907e-5, 7.468998468271742e-7, 2.648452678093185e-5, 1.1646959416778965e-5, 1.3837981647446762e-5, -0.0001171303877311755, 4.695770051747409e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686801e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169564e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725191e-5, 6.244188484067264e-5, 7.469096530800149e-7, 5.689211489718052e-5, 7.1173472629231915e-6, 5.954610288730182e-6, -0.00011715017485368011, 5.219268958345474e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8679956885505797e-5, 6.22405041223763e-5, 7.895866230347866e-7, 5.1328174053501416e-5, 6.520575264262388e-6, 6.947186299149548e-6, -0.00011439957682586568, 5.253507349047036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.662236119205141e-5, 6.22038313161045e-5, 8.341723276865514e-7, 4.6884266780823446e-5, 6.042018654988584e-6, 7.674396605223633e-6, -0.00011232120010822006, 5.3048756154447685e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282173e-6, 6.209775074490816e-5, 9.933844169656903e-7, 3.164071366681583e-5, 4.403797925087174e-6, 1.0241153998189888e-5, -0.00010524984542398168, 5.449107557297119e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.064213048175751e-6, 6.19240080765143e-5, 1.0177684176149202e-6, 2.828332830148783e-5, 4.0468308336575935e-6, 1.0920584575517398e-5, -0.00010356484456112743, 5.436537404511155e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.711168592390285e-6, 6.188798984686695e-5, 1.0238433232401114e-6, 2.7501378047114883e-5, 3.9636354793442555e-6, 1.1076758694530476e-5, -0.00010317677669661676, 5.434339897910372e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.661024140204761e-6, 6.247690594571884e-5, 1.0192731906927756e-6, 3.201801665142214e-5, 4.43707545510235e-6, 9.945714368397733e-6, -0.00010576904129277543, 5.533079821646357e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.661024140204761e-6, 6.247690594571884e-5, 1.0192731906927756e-6, 3.201801665142214e-5, 4.43707545510235e-6, 9.945714368397733e-6, -0.00010576904129277543, 5.533079821646357e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874088e-6, 6.266998026886615e-5, 1.0700320180159662e-6, 2.892371256096627e-5, 4.101534709033812e-6, 1.0360687173111185e-5, -0.00010454187870652219, 5.600984229402898e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.028653492418798e-6, 6.298079881956723e-5, 1.1236652349036143e-6, 2.6563763273362875e-5, 3.844067696057177e-6, 1.0612910724855142e-5, -0.00010377172107393946, 5.675168817612229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.9431506526239755e-6, 6.403309190740928e-5, 1.3137303143827417e-6, 1.816528796329835e-5, 2.9323462419910563e-6, 1.1625115073342836e-5, -0.00010102022165751395, 5.893800809713659e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.9583195057088644e-6, 6.405690427151265e-5, 1.341573690629332e-6, 1.603062769786761e-5, 2.7045361073586963e-6, 1.2015165543930656e-5, -0.00010009114084026712, 5.900653034677045e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946414833e-6, 6.406779907089838e-5, 1.3485482675961318e-6, 1.5535410164222664e-5, 2.6516542735099303e-6, 1.2103970379972239e-5, -9.98812418204991e-5, 5.90278965894125e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.17069419466096e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.8861294369199983e-5, 3.0011686836434225e-6, 1.1289924663095744e-5, -0.00010179454174536245, 5.965661930572352e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.17069419466096e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.8861294369199983e-5, 3.0011686836434225e-6, 1.1289924663095744e-5, -0.00010179454174536245, 5.965661930572352e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278369e-6, 6.45926873823788e-5, 1.3586268050351643e-6, 1.8569239599871093e-5, 2.9690069327848955e-6, 1.1304968594741934e-5, -0.00010175620551961378, 5.980244999080272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435291e-6, 6.46904515477578e-5, 1.3708008355613254e-6, 1.8285994414260024e-5, 2.9377766981512843e-6, 1.1317267248391083e-5, -0.000101727729042562, 5.995148280875784e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988143e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.7349139697843916e-5, 2.8344163610915387e-6, 1.1353061159745518e-5, -0.0001016552013158799, 6.046032660905858e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.418913644671904e-6, 1.722097026318075e-5, 2.8202826330857108e-6, 1.1357880226450346e-5, -0.00010164694921842059, 6.053006202835821e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251637e-5, 1.4203920273976042e-6, 1.7189459488461186e-5, 2.816806444070734e-6, 1.135899065482253e-5, -0.00010164518175989666, 6.0547455231883495e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792848763e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.720408948586618e-5, 2.8183547598207524e-6, 1.1355649533987885e-5, -0.00010165368856272935, 6.054905946590178e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.17069419466096e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.8861294369199983e-5, 3.0011686836434225e-6, 1.1289924663095744e-5, -0.00010179454174536245, 5.965661930572352e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278369e-6, 6.45926873823788e-5, 1.3586268050351643e-6, 1.8569239599871093e-5, 2.9690069327848955e-6, 1.1304968594741934e-5, -0.00010175620551961378, 5.980244999080272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435291e-6, 6.46904515477578e-5, 1.3708008355613254e-6, 1.8285994414260024e-5, 2.9377766981512843e-6, 1.1317267248391083e-5, -0.000101727729042562, 5.995148280875784e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988143e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.7349139697843916e-5, 2.8344163610915387e-6, 1.1353061159745518e-5, -0.0001016552013158799, 6.046032660905858e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.418913644671904e-6, 1.722097026318075e-5, 2.8202826330857108e-6, 1.1357880226450346e-5, -0.00010164694921842059, 6.053006202835821e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251637e-5, 1.4203920273976042e-6, 1.7189459488461186e-5, 2.816806444070734e-6, 1.135899065482253e-5, -0.00010164518175989666, 6.0547455231883495e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792848763e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.720408948586618e-5, 2.8183547598207524e-6, 1.1355649533987885e-5, -0.00010165368856272935, 6.054905946590178e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.6345113704783046e-6, 6.509598189380692e-5, 1.4204072138594638e-6, 1.7201918253106893e-5, 2.8181279063728728e-6, 1.1356210178017712e-5, -0.00010131298269677685, 6.054848622091291e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8225254116505686e-6, 6.565300412974889e-5, 1.4910670830441572e-6, 1.5683669165386014e-5, 2.649181401902913e-6, 1.1394231623052972e-5, -0.0001011872566940216, 6.1386287025372265e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.239471140732374e-6, 6.630711724966682e-5, 1.5659586437215598e-6, 1.4679308907307285e-5, 2.5358540913661115e-6, 1.133789946118663e-5, -0.00010140570351857912, 6.219036306063098e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196749849e-6, 6.849262337610679e-5, 1.8286967882947808e-6, 1.0491185041783926e-5, 2.072600440682843e-6, 1.1405880427298398e-5, -0.00010181477816151659, 6.452515767674861e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.817003246126622e-6, 6.867509742714563e-5, 1.8657125420428308e-6, 8.938851549709708e-6, 1.9062886391373121e-6, 1.1655441508056932e-5, -0.00010132526056205591, 6.4668656498368695e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9909727761468336e-6, 6.87242881987711e-5, 1.8750199032900143e-6, 8.578561032666879e-6, 1.8676916733869766e-6, 1.171234746673838e-5, -0.0001012192929295205, 6.470411878520316e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685358158e-7, 6.911930756100322e-5, 1.8765770274191654e-6, 1.1608631835270818e-5, 2.188218254493672e-6, 1.1011483249851126e-5, -0.00010296813899555601, 6.5084251989821935e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685358158e-7, 6.911930756100322e-5, 1.8765770274191654e-6, 1.1608631835270818e-5, 2.188218254493672e-6, 1.1011483249851126e-5, -0.00010296813899555601, 6.5084251989821935e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0581833025551455e-6, 7.000873564525536e-5, 1.97090430352413e-6, 1.1041532286134808e-5, 2.1231692746669804e-6, 1.0873529029797572e-5, -0.00010366058158624438, 6.5845277443103834e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967757e-6, 7.097885861059481e-5, 2.070459274051628e-6, 1.0777110067781202e-5, 2.0920032557741183e-6, 1.0703056519773486e-5, -0.00010459488829557593, 6.650576332703899e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5670687150624683e-6, 7.426659450857287e-5, 2.4161271355654215e-6, 9.077497029896229e-6, 1.9049283907374456e-6, 1.0383100697667033e-5, -0.0001074610030578011, 6.845686580299626e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0872173256384247e-6, 7.463181445234823e-5, 2.463377322795021e-6, 8.056894192924406e-6, 1.7959623655459212e-6, 1.0520621419227358e-5, -0.00010742184828529668, 6.865961206817316e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.20986685830691e-6, 7.472513060550689e-5, 2.475269994758559e-6, 7.817653231485468e-6, 1.7704719397470676e-6, 1.0552885234463163e-5, -0.00010742185050511379, 6.870572640845731e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639095224e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009675e-5, 2.0160381938703664e-6, 1.0071643240925928e-5, -0.00010875999135519381, 6.873598590747469e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639095224e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009675e-5, 2.0160381938703664e-6, 1.0071643240925928e-5, -0.00010875999135519381, 6.873598590747469e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3509161270041e-6, 7.621771980862897e-5, 2.600305423656363e-6, 1.0084374569886806e-5, 2.0127317355982054e-6, 9.89798481309654e-6, -0.00011008948113996172, 6.9254486620907345e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.4591655198684037e-6, 7.748946979403403e-5, 2.7257862280707347e-6, 1.0178529912786255e-5, 2.024993546693045e-6, 9.73803395773115e-6, -0.00011158155733258173, 6.965578373398106e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0494844367188507e-6, 8.188539161621204e-5, 3.1582791369681053e-6, 9.993973383839572e-6, 2.0159182653323708e-6, 9.362936842906563e-6, -0.00011656212391371753, 7.096140231740038e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569794064e-6, 8.245727189395119e-5, 3.2165811689217054e-6, 9.528074400218544e-6, 1.9673510758431426e-6, 9.39629229408234e-6, -0.00011701868780611433, 7.1213346161180155e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3994294395173133e-6, 8.260094116601596e-5, 3.2312297514866366e-6, 9.417226560425238e-6, 1.955883797867542e-6, 9.405183596079168e-6, -0.0001171368618965733, 7.126967585181449e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8303811618864994e-6, 8.27473523595222e-5, 3.2385822277603715e-6, 1.064936714758984e-5, 2.0904951775732e-6, 9.215967015160061e-6, -0.00011786692523173544, 7.0947801422432615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.8303811618864994e-6, 8.27473523595222e-5, 3.2385822277603715e-6, 1.064936714758984e-5, 2.0904951775732e-6, 9.215967015160061e-6, -0.00011786692523173544, 7.0947801422432615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9117206686775726e-6, 8.436598051424243e-5, 3.3945074240277044e-6, 1.0840251678846564e-5, 2.1173640731864716e-6, 9.092179744014605e-6, -0.00011984550408133562, 7.123499978340287e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644512943e-6, 8.607459783329971e-5, 3.5565902453176446e-6, 1.1072226221372698e-5, 2.1509344845000202e-6, 9.006243060249819e-6, -0.0001219755537848939, 7.142962375702704e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3002272093361765e-6, 9.207177358709429e-5, 4.113973517449834e-6, 1.160338527042417e-5, 2.239530335579115e-6, 8.80022136907761e-6, -0.00012936091057029548, 7.231799281334296e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.449721973999257e-6, 9.291085454654512e-5, 4.189225547624123e-6, 1.1466507503527065e-5, 2.2281170507316752e-6, 8.786484838099051e-6, -0.00013029477627844093, 7.263864817914643e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4865017622316176e-6, 9.31207215121725e-5, 4.208080051842247e-6, 1.1432529280426881e-5, 2.2253735253084884e-6, 8.785043566324615e-6, -0.00013052942369808944, 7.271173999783094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719284034e-6, 9.316528819396454e-5, 4.216088057963696e-6, 1.199189926438974e-5, 2.2905822939919816e-6, 8.795920165475587e-6, -0.0001308742848017022, 7.211502153988252e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719284034e-6, 9.316528819396454e-5, 4.216088057963696e-6, 1.199189926438974e-5, 2.2905822939919816e-6, 8.795920165475587e-6, -0.0001308742848017022, 7.211502153988252e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2360584634912478e-6, 9.434383308632246e-5, 4.323681765271147e-6, 1.214253707500277e-5, 2.3143625813368713e-6, 8.783895269883944e-6, -0.00013236487209522077, 7.220503853912329e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.269024238866128e-6, 9.557757659294193e-5, 4.434896743324184e-6, 1.2297330964808952e-5, 2.339380350639019e-6, 8.78451320426218e-6, -0.00013393197818307973, 7.229256088237331e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733154e-6, 9.989873927378853e-5, 4.819415672655295e-6, 1.2822021030554699e-5, 2.4255436188422044e-6, 8.806777333014051e-6, -0.00013942390883014616, 7.26636080461807e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.40485251024165e-6, 0.00010051367244473639, 4.8730844215414464e-6, 1.2890400624449e-5, 2.436936252856176e-6, 8.807535014863811e-6, -0.0001402017474383279, 7.275266169639436e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032148724e-6, 0.00010066745139688813, 4.8864867192942156e-6, 1.2907421745726535e-5, 2.4397924685996156e-6, 8.808165993311962e-6, -0.00014039645376762963, 7.277405740594302e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3991475127271166e-6, 0.00010066184193750251, 4.886936963906229e-6, 1.291810350868341e-5, 2.441853635222332e-6, 8.829082701415289e-6, -0.00014040476778800424, 7.267801528547368e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812255, 0.00481932044139993, 0.00013440229007386734, 0.0015939327322634525, 0.0002919384547513805, 0.0008872113754603068, 0.9914330082058364, 0.0004216088057963696, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.2030046719284034e-6, 9.316528819396454e-5, 4.216088057963696e-6, 1.199189926438974e-5, 2.2905822939919816e-6, 8.795920165475587e-6, -0.0001308742848017022, 7.211502153988252e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2360584634912478e-6, 9.434383308632246e-5, 4.323681765271147e-6, 1.214253707500277e-5, 2.3143625813368713e-6, 8.783895269883944e-6, -0.00013236487209522077, 7.220503853912329e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.269024238866128e-6, 9.557757659294193e-5, 4.434896743324184e-6, 1.2297330964808952e-5, 2.339380350639019e-6, 8.78451320426218e-6, -0.00013393197818307973, 7.229256088237331e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733154e-6, 9.989873927378853e-5, 4.819415672655295e-6, 1.2822021030554699e-5, 2.4255436188422044e-6, 8.806777333014051e-6, -0.00013942390883014616, 7.26636080461807e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.40485251024165e-6, 0.00010051367244473639, 4.8730844215414464e-6, 1.2890400624449e-5, 2.436936252856176e-6, 8.807535014863811e-6, -0.0001402017474383279, 7.275266169639436e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032148724e-6, 0.00010066745139688813, 4.8864867192942156e-6, 1.2907421745726535e-5, 2.4397924685996156e-6, 8.808165993311962e-6, -0.00014039645376762963, 7.277405740594302e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3991475127271166e-6, 0.00010066184193750251, 4.886936963906229e-6, 1.291810350868341e-5, 2.441853635222332e-6, 8.829082701415289e-6, -0.00014040476778800424, 7.267801528547368e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.6370921511227134e-10, 5.476717799788526e-11, 1.5766206695069892e-11, 5.000778318952763e-10, 6.044700623932588e-11, 5.21528013947524e-11, -3.3716715932644115e-10, -8.233464982000464e-11, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0004457095912550955, 0.005613926211940227, 0.00017158342383826085, 0.0016961211234728963, 0.0003113557930161014, 0.0009596350979667635, 0.990320471606569, 0.0004812138186045834, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-0.00018196897713461396, 8.153353703605718e-6, 1.3400066168140134e-5, 0.00018457347729702075, 4.600714561397325e-5, 2.6490728595497142e-5, -3.397379536337537e-7, -5.530664233994352e-5, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812255, 0.00481932044139993, 0.00013440229007386734, 0.0015939327322634525, 0.0002919384547513805, 0.0008872113754603068, 0.9914330082058364, 0.0004216088057963696, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [25.625625625625627 26.726726726726728 … 47.647647647647645 48.748748748748746; 0.00028505768207284354 0.0003949244109886422 … 0.04641763613248029 0.05267028396531672; … ; 26.626626626626628 27.72772772772773 … 48.648648648648646 49.749749749749746; 0.0003834383851205177 0.0005297228750767593 … 0.0520938041466918 0.05850226651032172], [51.251251251251254 52.352352352352355 … 73.27327327327328 74.37437437437437; 0.06738555104504218 0.07390846153933442 … 0.1518437596543983 0.15296432830696702; … ; 52.252252252252255 53.353353353353356 … 74.27427427427428 75.37537537537537; 0.07331723258396047 0.07978464606545342 … 0.15287295240307913 0.15376628624326352], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755e950, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755e970, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755e990, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755e9b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0004185943610812255, 0.00481932044139993, 0.00013440229007386734, 0.0015939327322634525, 0.0002919384547513805, 0.0008872113754603068, 0.9914330082058364, 0.0004216088057963696, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 1.3002011468348265e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755e950, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755e970, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755e990, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755e9b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 30.0, [1.0, 1.0, 0.01, 1.3002011468348265e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([51.251251251251254 52.352352352352355 … 73.27327327327328 74.37437437437437; 0.06738555104504218 0.07390846153933442 … 0.1518437596543983 0.15296432830696702; … ; 52.252252252252255 53.353353353353356 … 74.27427427427428 75.37537537537537; 0.07331723258396047 0.07978464606545342 … 0.15287295240307913 0.15376628624326352], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 30.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  77
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                362
Number of accepted steps:                          12
Number of rejected steps:                          0
Maximum eigenvalue recorded:                       0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [100.0], [[[0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755eb30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755eb50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755eb70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755eb90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], (100.0, 100.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755eb30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755eb50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755eb70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755eb90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [100.0], [[[0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.3991475127271166e-6, 0.00010066184193750251, 4.886936963906229e-6, 1.291810350868341e-5, -0.00011400067329213269, 0.0001252716096287703, -0.00014040476778800424, 7.267801528547368e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [3.3991475127271166e-6, 0.00010066184193750251, 4.886936963906229e-6, 1.291810350868341e-5, -0.00011400067329213269, 0.0001252716096287703, -0.00014040476778800424, 7.267801528547368e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.95167684527067e-310 6.95167689725586e-310 … 6.95167686578428e-310 6.95167698802797e-310; 6.95167684527225e-310 6.951676897259e-310 … 6.95167686578586e-310 6.9516768658175e-310; … ; 6.95187751272954e-310 6.9516768652673e-310 … 6.9516768658143e-310 6.95167698829833e-310; 6.95187751272954e-310 6.95167686526887e-310 … 6.9516768658159e-310 6.95180893660406e-310], [6.95167686587123e-310 6.95187043696127e-310 … 6.95180902238887e-310 6.9516768664246e-310; 6.9516768658728e-310 6.95180899347694e-310 … 6.95180902238966e-310 6.95187073849547e-310; … ; 6.95167686590127e-310 6.95167686592815e-310 … 6.9516768664214e-310 6.95187751272954e-310; 6.9516769888501e-310 6.95167686592973e-310 … 6.951676866423e-310 6.95167686671075e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755eb30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755eb50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755eb70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755eb90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.00044919875500090857, 0.005717135057401615, 0.00017657677934124465, 0.001709369944255518, 0.0003138612585642993, 0.000968719025856362, 0.9901764621498523, 0.0004886936963906229, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c730, Ptr{Nothing} @0x00007ff85755eb30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdb9c950, Ptr{Nothing} @0x00007ff85755eb50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cb70, Ptr{Nothing} @0x00007ff85755eb70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdb9cdb0, Ptr{Nothing} @0x00007ff85755eb90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 100.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.95167686587123e-310 6.95187043696127e-310 … 6.95180902238887e-310 6.9516768664246e-310; 6.9516768658728e-310 6.95180899347694e-310 … 6.95180902238966e-310 6.95187073849547e-310; … ; 6.95167686590127e-310 6.95167686592815e-310 … 6.9516768664214e-310 6.95187751272954e-310; 6.9516769888501e-310 6.95167686592973e-310 … 6.951676866423e-310 6.95167686671075e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 100.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  3
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                0
Number of accepted steps:                          0
Number of rejected steps:                          0, [1], SciMLBase.ReturnCode.Success)), :MAXTIME_REACHED)

b.ii

Let’s say our goal is to get the reproduction number R0 below 1.0, at some point within the next 100 days. Are there interventions that will allow us to meet our goal? If there are multiple options, which single intervention would have the greatest impact on R0 and let us meet our goal with minimal change to the intervention parameter? Assume that the intervention will be implemented after one month (t = day 30), and will stay constant after that, over the remaining time period (i.e. the following 70 days).

R0 = Infected # how is R0 defined from the states?

\[ \begin{equation} \mathrm{Infected}\left( t \right) \end{equation} \]

intervention_parameters = [theta] # Need to figure out what these should be
[p => EasyModelAnalysis.optimal_parameter_intervention_for_threshold(prob, R0, 1.0,
                                                                     p -
                                                                     ModelingToolkit.defaults(sys)[p],
                                                                     [p], [0.0],
                                                                     3 .* [
                                                                         ModelingToolkit.defaults(sys)[p],
                                                                     ],
                                                                     (30.0, 100.0);
                                                                     maxtime = 60)
 for p in intervention_parameters]
1-element Vector{Pair{Num, Tuple{Dict{Num, Float64}, Tuple{ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}}, Symbol}}}:
 theta => (Dict(theta => 1.6001761074395364e-17), (ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], nothing, nothing, [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff85147ba10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff85147ba30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff85147ba50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff85147ba70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 30.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff85147ba10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff85147ba30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff85147ba50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff85147ba70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143  …  0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171  …  0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-5.390961837841079e-10, 9.572844952319827e-11, -1.2202406872160754e-12, 2.4494367647022593e-10, 1.825142725703532e-9, -1.8512669504982965e-9, 1.8701730533659872e-10, 3.8751217926882333e-11, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0005099821840077465, 0.0004124041986338562, 3.4583716924347714e-6, 0.0004593135827010452, 4.313325575975515e-5, 0.0002733259261631827, 0.9982565817891844, 4.1817358520308544e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-0.0003500785030051232, 6.719860876612745e-5, -1.2159215845920634e-6, 0.00016660604101897576, 0.0017496031168409653, -0.0014480739075501772, 1.871171644922294e-7, 3.716927369484967e-5, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [6.9517990288926e-310 6.9517990280626e-310 … 0.0 0.0; 6.9517990278883e-310 6.95180274795675e-310 … 0.0 0.0; … ; 6.9517990296282e-310 6.9517990241966e-310 … 0.0 0.0; 6.9517990311021e-310 6.95180269084e-310 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff85147ba10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff85147ba30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff85147ba50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff85147ba70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff85147ba10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff85147ba30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff85147ba50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff85147ba70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 0.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.9517990288926e-310 6.9517990280626e-310 … 0.0 0.0; 6.9517990278883e-310 6.95180274795675e-310 … 0.0 0.0; … ; 6.9517990296282e-310 6.9517990241966e-310 … 0.0 0.0; 6.9517990311021e-310 6.95180269084e-310 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  73
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                434
Number of accepted steps:                          11
Number of rejected steps:                          0
Maximum eigenvalue recorded:                       0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004546648751243862, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.00013213585844144393, 0.0003458937026947669, 0.9975014616994561, 6.750419473306666e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.0001508796817718649, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.0001508796817718649, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003784592309278035, 0.001191083810441886, 1.2649225679806425e-5, 0.000970529545203081, 0.0001794430470747409, 0.0004090721217622655, 0.996756852366504, 0.00010192731906927757, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003441483145574538, 0.001552144239730018, 1.93785894824414e-5, 0.0011104081898286834, 0.0002000906850104613, 0.0004705794309320389, 0.9961685794664472, 0.00013468775067459598, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00034081145595821357, 0.0016314087357181843, 2.107104004097533e-5, 0.0011324527319674623, 0.00020364851759223078, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00034081145595821357, 0.0016314087357181843, 2.107104004097533e-5, 0.0011324527319674623, 0.00020364851759223078, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00033545128894104986, 0.00211724156988888, 3.300016977876119e-5, 0.0012329250211764243, 0.0002213594274654488, 0.000566046922273129, 0.9953063345643973, 0.00018765770274191656, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003494356258730636, 0.002765507430556316, 5.258638927192397e-5, 0.0013282194361467316, 0.0002399947304627217, 0.0006609669332212115, 0.9943552629585674, 0.0002480431625636236, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00037716899695032404, 0.0036194995158879673, 8.353961808919764e-5, 0.001439654049832778, 0.00026209749093517514, 0.0007650109780188409, 0.9931291877941726, 0.0003238582227760372, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122514, 0.004819320441399931, 0.00013440229007386734, 0.001593932732263452, 0.0002919384547513804, 0.000887211375460307, 0.9914330082058364, 0.0004216088057963697, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.4377352811887173e-5, 9.739007505882596e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.4247560684373934e-5, 9.942128953996065e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.42159577997798e-5, 9.991296286639383e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.3798387505866724e-5, 1.0581395920837418e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788658e-5, 1.1130268062387151e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.7285175888975495e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.223121833082219e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673232e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.2038774428257157e-5, 1.3325202141868899e-5, -0.00011442804351306558, 4.3815510813100145e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4708714122576545e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020452, 4.392631735360229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.2062132516609152e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448496145e-7, 5.899421721399426e-5, 7.395215862974435e-7, 2.6706672481746932e-5, 1.1693729013195475e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534867e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.911788488107589e-5, 7.454223296072418e-7, 2.652797272302986e-5, 1.1656122270334628e-5, 1.382225304661895e-5, -0.00011708249451122276, 4.6903635812811615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526509e-7, 5.914908164049072e-5, 7.468998468271742e-7, 2.648452678093189e-5, 1.1646959416778975e-5, 1.3837981647446762e-5, -0.00011713038773117557, 4.695770051747408e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686802e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169567e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.2062132516609152e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448496145e-7, 5.899421721399426e-5, 7.395215862974435e-7, 2.6706672481746932e-5, 1.1693729013195475e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534867e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.911788488107589e-5, 7.454223296072418e-7, 2.652797272302986e-5, 1.1656122270334628e-5, 1.382225304661895e-5, -0.00011708249451122276, 4.6903635812811615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526509e-7, 5.914908164049072e-5, 7.468998468271742e-7, 2.648452678093189e-5, 1.1646959416778975e-5, 1.3837981647446762e-5, -0.00011713038773117557, 4.695770051747408e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686802e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169567e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725193e-5, 6.244188484067265e-5, 7.469096530800149e-7, 5.689211489718056e-5, 7.117347262923198e-6, 5.954610288730182e-6, -0.00011715017485368015, 5.219268958345474e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.867995688550582e-5, 6.224050412237632e-5, 7.895866230347866e-7, 5.132817405350146e-5, 6.520575264262393e-6, 6.947186299149548e-6, -0.00011439957682586572, 5.253507349047036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6622361192051414e-5, 6.220383131610451e-5, 8.341723276865514e-7, 4.688426678082347e-5, 6.0420186549885874e-6, 7.674396605223633e-6, -0.0001123212001082201, 5.304875615444768e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282228e-6, 6.20977507449082e-5, 9.9338441696569e-7, 3.164071366681596e-5, 4.40379792508719e-6, 1.024115399818988e-5, -0.00010524984542398182, 5.449107557297118e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.06421304817584e-6, 6.192400807651436e-5, 1.01776841761492e-6, 2.8283328301488036e-5, 4.046830833657616e-6, 1.0920584575517384e-5, -0.00010356484456112763, 5.436537404511156e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.71116859239042e-6, 6.188798984686701e-5, 1.023843323240111e-6, 2.750137804711511e-5, 3.9636354793442826e-6, 1.1076758694530466e-5, -0.00010317677669661695, 5.434339897910375e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.661024140204736e-6, 6.247690594571881e-5, 1.0192731906927756e-6, 3.201801665142207e-5, 4.43707545510234e-6, 9.945714368397736e-6, -0.00010576904129277535, 5.533079821646358e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.661024140204736e-6, 6.247690594571881e-5, 1.0192731906927756e-6, 3.201801665142207e-5, 4.43707545510234e-6, 9.945714368397736e-6, -0.00010576904129277535, 5.533079821646358e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874052e-6, 6.266998026886613e-5, 1.0700320180159662e-6, 2.8923712560966202e-5, 4.101534709033802e-6, 1.0360687173111183e-5, -0.00010454187870652212, 5.600984229402899e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.028653492418752e-6, 6.298079881956721e-5, 1.1236652349036143e-6, 2.656376327336279e-5, 3.844067696057169e-6, 1.0612910724855143e-5, -0.0001037717210739394, 5.675168817612229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.9431506526239806e-6, 6.403309190740927e-5, 1.313730314382741e-6, 1.816528796329837e-5, 2.9323462419910546e-6, 1.162511507334281e-5, -0.00010102022165751392, 5.893800809713664e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.9583195057088644e-6, 6.405690427151262e-5, 1.3415736906293311e-6, 1.6030627697867663e-5, 2.7045361073586963e-6, 1.2015165543930612e-5, -0.00010009114084026712, 5.9006530346770535e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946414647e-6, 6.406779907089835e-5, 1.3485482675961303e-6, 1.5535410164222698e-5, 2.6516542735099282e-6, 1.2103970379972198e-5, -9.98812418204991e-5, 5.902789658941259e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1706941946609736e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.88612943692e-5, 3.001168683643425e-6, 1.128992466309573e-5, -0.00010179454174536243, 5.965661930572354e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609736e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.88612943692e-5, 3.001168683643425e-6, 1.128992466309573e-5, -0.00010179454174536243, 5.965661930572354e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783828e-6, 6.459268738237878e-5, 1.3586268050351643e-6, 1.8569239599871117e-5, 2.969006932784898e-6, 1.1304968594741917e-5, -0.00010175620551961377, 5.9802449990802735e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824353044e-6, 6.469045154775778e-5, 1.3708008355613254e-6, 1.8285994414260038e-5, 2.9377766981512865e-6, 1.1317267248391066e-5, -0.00010172772904256198, 5.995148280875786e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881566e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.734913969784394e-5, 2.8344163610915413e-6, 1.13530611597455e-5, -0.00010165520131587989, 6.04603266090586e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3063260936787452e-6, 6.508222234187477e-5, 1.418913644671904e-6, 1.722097026318077e-5, 2.820282633085713e-6, 1.1357880226450325e-5, -0.00010164694921842056, 6.053006202835823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505600983e-6, 6.509436917251634e-5, 1.4203920273976042e-6, 1.7189459488461214e-5, 2.8168064440707365e-6, 1.135899065482251e-5, -0.00010164518175989666, 6.054745523188351e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.29598197928491e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.72040894858662e-5, 2.8183547598207545e-6, 1.1355649533987872e-5, -0.00010165368856272932, 6.05490594659018e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609736e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.88612943692e-5, 3.001168683643425e-6, 1.128992466309573e-5, -0.00010179454174536243, 5.965661930572354e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783828e-6, 6.459268738237878e-5, 1.3586268050351643e-6, 1.8569239599871117e-5, 2.969006932784898e-6, 1.1304968594741917e-5, -0.00010175620551961377, 5.9802449990802735e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824353044e-6, 6.469045154775778e-5, 1.3708008355613254e-6, 1.8285994414260038e-5, 2.9377766981512865e-6, 1.1317267248391066e-5, -0.00010172772904256198, 5.995148280875786e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881566e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.734913969784394e-5, 2.8344163610915413e-6, 1.13530611597455e-5, -0.00010165520131587989, 6.04603266090586e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3063260936787452e-6, 6.508222234187477e-5, 1.418913644671904e-6, 1.722097026318077e-5, 2.820282633085713e-6, 1.1357880226450325e-5, -0.00010164694921842056, 6.053006202835823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505600983e-6, 6.509436917251634e-5, 1.4203920273976042e-6, 1.7189459488461214e-5, 2.8168064440707365e-6, 1.135899065482251e-5, -0.00010164518175989666, 6.054745523188351e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.29598197928491e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.72040894858662e-5, 2.8183547598207545e-6, 1.1355649533987872e-5, -0.00010165368856272932, 6.05490594659018e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.634511370478313e-6, 6.50959818938069e-5, 1.4204072138594642e-6, 1.7201918253106907e-5, 2.8181279063728736e-6, 1.1356210178017691e-5, -0.00010131298269677683, 6.054848622091289e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8225254116505466e-6, 6.565300412974887e-5, 1.4910670830441574e-6, 1.5683669165386028e-5, 2.649181401902914e-6, 1.1394231623052946e-5, -0.0001011872566940216, 6.138628702537229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.2394711407323875e-6, 6.63071172496668e-5, 1.5659586437215602e-6, 1.4679308907307312e-5, 2.5358540913661136e-6, 1.1337899461186611e-5, -0.00010140570351857911, 6.2190363060631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196751306e-6, 6.849262337610666e-5, 1.8286967882947795e-6, 1.0491185041783604e-5, 2.0726004406828036e-6, 1.1405880427298393e-5, -0.00010181477816151623, 6.45251576767487e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8170032461269421e-6, 6.867509742714541e-5, 1.865712542042829e-6, 8.938851549709085e-6, 1.906288639137236e-6, 1.165544150805693e-5, -0.0001013252605620553, 6.466865649836881e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9909727761472114e-6, 6.872428819877085e-5, 1.8750199032900124e-6, 8.57856103266616e-6, 1.8676916733868892e-6, 1.1712347466738381e-5, -0.00010121929292951983, 6.470411878520328e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685357972e-7, 6.91193075610032e-5, 1.8765770274191656e-6, 1.1608631835270882e-5, 2.188218254493677e-6, 1.10114832498511e-5, -0.00010296813899555601, 6.508425198982194e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685357972e-7, 6.91193075610032e-5, 1.8765770274191656e-6, 1.1608631835270882e-5, 2.188218254493677e-6, 1.10114832498511e-5, -0.00010296813899555601, 6.508425198982194e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0581833025551184e-6, 7.000873564525535e-5, 1.9709043035241305e-6, 1.1041532286134855e-5, 2.123169274666984e-6, 1.087352902979755e-5, -0.00010366058158624435, 6.584527744310385e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967486e-6, 7.097885861059478e-5, 2.0704592740516286e-6, 1.077711006778124e-5, 2.0920032557741217e-6, 1.0703056519773473e-5, -0.0001045948882955759, 6.650576332703895e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.56706871506246e-6, 7.426659450857287e-5, 2.4161271355654194e-6, 9.077497029896276e-6, 1.904928390737448e-6, 1.0383100697667016e-5, -0.00010746100305780112, 6.84568658029963e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.087217325638389e-6, 7.463181445234823e-5, 2.463377322795017e-6, 8.05689419292448e-6, 1.7959623655459271e-6, 1.0520621419227332e-5, -0.0001074218482852967, 6.865961206817327e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.209866858306888e-6, 7.47251306055069e-5, 2.4752699947585545e-6, 7.817653231485525e-6, 1.7704719397470727e-6, 1.0552885234463149e-5, -0.00010742185050511383, 6.870572640845746e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639094563e-6, 7.501890369209463e-5, 2.4804316256362364e-6, 1.011725054800979e-5, 2.0160381938703787e-6, 1.0071643240925897e-5, -0.00010875999135519385, 6.873598590747472e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639094563e-6, 7.501890369209463e-5, 2.4804316256362364e-6, 1.011725054800979e-5, 2.0160381938703787e-6, 1.0071643240925897e-5, -0.00010875999135519385, 6.873598590747472e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.350916127004073e-6, 7.621771980862897e-5, 2.6003054236563635e-6, 1.0084374569886898e-5, 2.0127317355982147e-6, 9.897984813096517e-6, -0.00011008948113996177, 6.925448662090737e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.459165519868373e-6, 7.748946979403404e-5, 2.725786228070736e-6, 1.0178529912786336e-5, 2.0249935466930552e-6, 9.73803395773114e-6, -0.00011158155733258178, 6.965578373398106e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0494844367190014e-6, 8.188539161621193e-5, 3.1582791369681045e-6, 9.993973383839315e-6, 2.015918265332335e-6, 9.362936842906553e-6, -0.00011656212391371729, 7.096140231740046e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569797062e-6, 8.2457271893951e-5, 3.216581168921704e-6, 9.528074400217989e-6, 1.9673510758430706e-6, 9.396292294082326e-6, -0.00011701868780611383, 7.121334616118031e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3994294395176284e-6, 8.260094116601576e-5, 3.231229751486635e-6, 9.417226560424594e-6, 1.95588379786746e-6, 9.405183596079168e-6, -0.0001171368618965727, 7.126967585181466e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.830381161886518e-6, 8.274735235952217e-5, 3.238582227760372e-6, 1.0649367147589799e-5, 2.090495177573194e-6, 9.215967015160027e-6, -0.00011786692523173536, 7.094780142243272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.830381161886518e-6, 8.274735235952217e-5, 3.238582227760372e-6, 1.0649367147589799e-5, 2.090495177573194e-6, 9.215967015160027e-6, -0.00011786692523173536, 7.094780142243272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.911720668677586e-6, 8.43659805142424e-5, 3.394507424027705e-6, 1.0840251678846537e-5, 2.1173640731864665e-6, 9.09217974401457e-6, -0.00011984550408133555, 7.123499978340293e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644513214e-6, 8.60745978332997e-5, 3.556590245317646e-6, 1.107222622137268e-5, 2.1509344845000143e-6, 9.006243060249782e-6, -0.00012197555378489385, 7.14296237570271e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.300227209336073e-6, 9.207177358709433e-5, 4.113973517449837e-6, 1.1603385270424386e-5, 2.2395303355791426e-6, 8.800221369077586e-6, -0.00012936091057029565, 7.231799281334287e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4497219739990654e-6, 9.291085454654521e-5, 4.189225547624127e-6, 1.1466507503527458e-5, 2.2281170507317265e-6, 8.78648483809903e-6, -0.00013029477627844125, 7.2638648179146285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.486501762231399e-6, 9.312072151217263e-5, 4.2080800518422525e-6, 1.1432529280427322e-5, 2.2253735253085465e-6, 8.785043566324598e-6, -0.00013052942369808982, 7.271173999783079e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719284135e-6, 9.31652881939645e-5, 4.216088057963697e-6, 1.1991899264389686e-5, 2.290582293991973e-6, 8.795920165475567e-6, -0.00013087428480170209, 7.2115021539882545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719284135e-6, 9.31652881939645e-5, 4.216088057963697e-6, 1.1991899264389686e-5, 2.290582293991973e-6, 8.795920165475567e-6, -0.00013087428480170209, 7.2115021539882545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.236058463491258e-6, 9.434383308632242e-5, 4.323681765271148e-6, 1.214253707500271e-5, 2.314362581336862e-6, 8.78389526988392e-6, -0.00013236487209522066, 7.220503853912324e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2690242388661297e-6, 9.55775765929419e-5, 4.434896743324185e-6, 1.2297330964808911e-5, 2.3393803506390136e-6, 8.784513204262164e-6, -0.00013393197818307962, 7.2292560882373305e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733493e-6, 9.989873927378849e-5, 4.8194156726552995e-6, 1.282202103055459e-5, 2.425543618842189e-6, 8.806777333014034e-6, -0.00013942390883014602, 7.266360804618069e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102417602e-6, 0.00010051367244473636, 4.873084421541454e-6, 1.2890400624448783e-5, 2.436936252856149e-6, 8.807535014863804e-6, -0.00014020174743832774, 7.275266169639434e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.409729703214964e-6, 0.00010066745139688812, 4.886486719294223e-6, 1.2907421745726311e-5, 2.4397924685995855e-6, 8.808165993311952e-6, -0.00014039645376762944, 7.277405740594301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399147512727225e-6, 0.0001006618419375024, 4.8869369639062305e-6, 1.2918103508683152e-5, 2.4418536352223e-6, 8.829082701415286e-6, -0.00014040476778800394, 7.267801528547361e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484670, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff8514846b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514846d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], (30.0, 100.0), [1.0, 1.0, 0.01, 1.6001761074395364e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484670, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff8514846b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514846d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004546648751243862, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.00013213585844144393, 0.0003458937026947669, 0.9975014616994561, 6.750419473306666e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.0001508796817718649, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.0001508796817718649, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003784592309278035, 0.001191083810441886, 1.2649225679806425e-5, 0.000970529545203081, 0.0001794430470747409, 0.0004090721217622655, 0.996756852366504, 0.00010192731906927757, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003441483145574538, 0.001552144239730018, 1.93785894824414e-5, 0.0011104081898286834, 0.0002000906850104613, 0.0004705794309320389, 0.9961685794664472, 0.00013468775067459598, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00034081145595821357, 0.0016314087357181843, 2.107104004097533e-5, 0.0011324527319674623, 0.00020364851759223078, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.21, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00034081145595821357, 0.0016314087357181843, 2.107104004097533e-5, 0.0011324527319674623, 0.00020364851759223078, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00033545128894104986, 0.00211724156988888, 3.300016977876119e-5, 0.0012329250211764243, 0.0002213594274654488, 0.000566046922273129, 0.9953063345643973, 0.00018765770274191656, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003494356258730636, 0.002765507430556316, 5.258638927192397e-5, 0.0013282194361467316, 0.0002399947304627217, 0.0006609669332212115, 0.9943552629585674, 0.0002480431625636236, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00037716899695032404, 0.0036194995158879673, 8.353961808919764e-5, 0.001439654049832778, 0.00026209749093517514, 0.0007650109780188409, 0.9931291877941726, 0.0003238582227760372, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122514, 0.004819320441399931, 0.00013440229007386734, 0.001593932732263452, 0.0002919384547513804, 0.000887211375460307, 0.9914330082058364, 0.0004216088057963697, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143  …  0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.4377352811887173e-5, 9.739007505882596e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.4247560684373934e-5, 9.942128953996065e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.42159577997798e-5, 9.991296286639383e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.3798387505866724e-5, 1.0581395920837418e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788658e-5, 1.1130268062387151e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.7285175888975495e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.223121833082219e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673232e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.2038774428257157e-5, 1.3325202141868899e-5, -0.00011442804351306558, 4.3815510813100145e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4708714122576545e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020452, 4.392631735360229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.2062132516609152e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448496145e-7, 5.899421721399426e-5, 7.395215862974435e-7, 2.6706672481746932e-5, 1.1693729013195475e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534867e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.911788488107589e-5, 7.454223296072418e-7, 2.652797272302986e-5, 1.1656122270334628e-5, 1.382225304661895e-5, -0.00011708249451122276, 4.6903635812811615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526509e-7, 5.914908164049072e-5, 7.468998468271742e-7, 2.648452678093189e-5, 1.1646959416778975e-5, 1.3837981647446762e-5, -0.00011713038773117557, 4.695770051747408e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686802e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169567e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306666e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160255e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760993e-7, 2.844196776036588e-5, 1.2062132516609152e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219584e-6, 5.814234704433905e-5, 6.980697836512152e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340445, 4.512230704013417e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3358338448496145e-7, 5.899421721399426e-5, 7.395215862974435e-7, 2.6706672481746932e-5, 1.1693729013195475e-5, 1.3757948604218316e-5, -0.00011689440668647225, 4.668734402534867e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.911788488107589e-5, 7.454223296072418e-7, 2.652797272302986e-5, 1.1656122270334628e-5, 1.382225304661895e-5, -0.00011708249451122276, 4.6903635812811615e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526509e-7, 5.914908164049072e-5, 7.468998468271742e-7, 2.648452678093189e-5, 1.1646959416778975e-5, 1.3837981647446762e-5, -0.00011713038773117557, 4.695770051747408e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165425e-7, 5.915468563686802e-5, 7.469076912816549e-7, 2.652028943568495e-5, 1.1653159667481749e-5, 1.3824387858169567e-5, -0.00011715038441044712, 4.696456750944647e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725193e-5, 6.244188484067265e-5, 7.469096530800149e-7, 5.689211489718056e-5, 7.117347262923198e-6, 5.954610288730182e-6, -0.00011715017485368015, 5.219268958345474e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.867995688550582e-5, 6.224050412237632e-5, 7.895866230347866e-7, 5.132817405350146e-5, 6.520575264262393e-6, 6.947186299149548e-6, -0.00011439957682586572, 5.253507349047036e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6622361192051414e-5, 6.220383131610451e-5, 8.341723276865514e-7, 4.688426678082347e-5, 6.0420186549885874e-6, 7.674396605223633e-6, -0.0001123212001082201, 5.304875615444768e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282228e-6, 6.20977507449082e-5, 9.9338441696569e-7, 3.164071366681596e-5, 4.40379792508719e-6, 1.024115399818988e-5, -0.00010524984542398182, 5.449107557297118e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.06421304817584e-6, 6.192400807651436e-5, 1.01776841761492e-6, 2.8283328301488036e-5, 4.046830833657616e-6, 1.0920584575517384e-5, -0.00010356484456112763, 5.436537404511156e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.71116859239042e-6, 6.188798984686701e-5, 1.023843323240111e-6, 2.750137804711511e-5, 3.9636354793442826e-6, 1.1076758694530466e-5, -0.00010317677669661695, 5.434339897910375e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.661024140204736e-6, 6.247690594571881e-5, 1.0192731906927756e-6, 3.201801665142207e-5, 4.43707545510234e-6, 9.945714368397736e-6, -0.00010576904129277535, 5.533079821646358e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.661024140204736e-6, 6.247690594571881e-5, 1.0192731906927756e-6, 3.201801665142207e-5, 4.43707545510234e-6, 9.945714368397736e-6, -0.00010576904129277535, 5.533079821646358e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874052e-6, 6.266998026886613e-5, 1.0700320180159662e-6, 2.8923712560966202e-5, 4.101534709033802e-6, 1.0360687173111183e-5, -0.00010454187870652212, 5.600984229402899e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.028653492418752e-6, 6.298079881956721e-5, 1.1236652349036143e-6, 2.656376327336279e-5, 3.844067696057169e-6, 1.0612910724855143e-5, -0.0001037717210739394, 5.675168817612229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.9431506526239806e-6, 6.403309190740927e-5, 1.313730314382741e-6, 1.816528796329837e-5, 2.9323462419910546e-6, 1.162511507334281e-5, -0.00010102022165751392, 5.893800809713664e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.9583195057088644e-6, 6.405690427151262e-5, 1.3415736906293311e-6, 1.6030627697867663e-5, 2.7045361073586963e-6, 1.2015165543930612e-5, -0.00010009114084026712, 5.9006530346770535e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946414647e-6, 6.406779907089835e-5, 1.3485482675961303e-6, 1.5535410164222698e-5, 2.6516542735099282e-6, 1.2103970379972198e-5, -9.98812418204991e-5, 5.902789658941259e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1706941946609736e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.88612943692e-5, 3.001168683643425e-6, 1.128992466309573e-5, -0.00010179454174536243, 5.965661930572354e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609736e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.88612943692e-5, 3.001168683643425e-6, 1.128992466309573e-5, -0.00010179454174536243, 5.965661930572354e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783828e-6, 6.459268738237878e-5, 1.3586268050351643e-6, 1.8569239599871117e-5, 2.969006932784898e-6, 1.1304968594741917e-5, -0.00010175620551961377, 5.9802449990802735e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824353044e-6, 6.469045154775778e-5, 1.3708008355613254e-6, 1.8285994414260038e-5, 2.9377766981512865e-6, 1.1317267248391066e-5, -0.00010172772904256198, 5.995148280875786e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881566e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.734913969784394e-5, 2.8344163610915413e-6, 1.13530611597455e-5, -0.00010165520131587989, 6.04603266090586e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3063260936787452e-6, 6.508222234187477e-5, 1.418913644671904e-6, 1.722097026318077e-5, 2.820282633085713e-6, 1.1357880226450325e-5, -0.00010164694921842056, 6.053006202835823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505600983e-6, 6.509436917251634e-5, 1.4203920273976042e-6, 1.7189459488461214e-5, 2.8168064440707365e-6, 1.135899065482251e-5, -0.00010164518175989666, 6.054745523188351e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.29598197928491e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.72040894858662e-5, 2.8183547598207545e-6, 1.1355649533987872e-5, -0.00010165368856272932, 6.05490594659018e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609736e-6, 6.450030878676594e-5, 1.3468775067459598e-6, 1.88612943692e-5, 3.001168683643425e-6, 1.128992466309573e-5, -0.00010179454174536243, 5.965661930572354e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783828e-6, 6.459268738237878e-5, 1.3586268050351643e-6, 1.8569239599871117e-5, 2.969006932784898e-6, 1.1304968594741917e-5, -0.00010175620551961377, 5.9802449990802735e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824353044e-6, 6.469045154775778e-5, 1.3708008355613254e-6, 1.8285994414260038e-5, 2.9377766981512865e-6, 1.1317267248391066e-5, -0.00010172772904256198, 5.995148280875786e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881566e-6, 6.503382262129016e-5, 1.4129958249910465e-6, 1.734913969784394e-5, 2.8344163610915413e-6, 1.13530611597455e-5, -0.00010165520131587989, 6.04603266090586e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3063260936787452e-6, 6.508222234187477e-5, 1.418913644671904e-6, 1.722097026318077e-5, 2.820282633085713e-6, 1.1357880226450325e-5, -0.00010164694921842056, 6.053006202835823e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505600983e-6, 6.509436917251634e-5, 1.4203920273976042e-6, 1.7189459488461214e-5, 2.8168064440707365e-6, 1.135899065482251e-5, -0.00010164518175989666, 6.054745523188351e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.29598197928491e-6, 6.509626762385293e-5, 1.4204031918963015e-6, 1.72040894858662e-5, 2.8183547598207545e-6, 1.1355649533987872e-5, -0.00010165368856272932, 6.05490594659018e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.634511370478313e-6, 6.50959818938069e-5, 1.4204072138594642e-6, 1.7201918253106907e-5, 2.8181279063728736e-6, 1.1356210178017691e-5, -0.00010131298269677683, 6.054848622091289e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8225254116505466e-6, 6.565300412974887e-5, 1.4910670830441574e-6, 1.5683669165386028e-5, 2.649181401902914e-6, 1.1394231623052946e-5, -0.0001011872566940216, 6.138628702537229e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.2394711407323875e-6, 6.63071172496668e-5, 1.5659586437215602e-6, 1.4679308907307312e-5, 2.5358540913661136e-6, 1.1337899461186611e-5, -0.00010140570351857911, 6.2190363060631e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196751306e-6, 6.849262337610666e-5, 1.8286967882947795e-6, 1.0491185041783604e-5, 2.0726004406828036e-6, 1.1405880427298393e-5, -0.00010181477816151623, 6.45251576767487e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8170032461269421e-6, 6.867509742714541e-5, 1.865712542042829e-6, 8.938851549709085e-6, 1.906288639137236e-6, 1.165544150805693e-5, -0.0001013252605620553, 6.466865649836881e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9909727761472114e-6, 6.872428819877085e-5, 1.8750199032900124e-6, 8.57856103266616e-6, 1.8676916733868892e-6, 1.1712347466738381e-5, -0.00010121929292951983, 6.470411878520328e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685357972e-7, 6.91193075610032e-5, 1.8765770274191656e-6, 1.1608631835270882e-5, 2.188218254493677e-6, 1.10114832498511e-5, -0.00010296813899555601, 6.508425198982194e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685357972e-7, 6.91193075610032e-5, 1.8765770274191656e-6, 1.1608631835270882e-5, 2.188218254493677e-6, 1.10114832498511e-5, -0.00010296813899555601, 6.508425198982194e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0581833025551184e-6, 7.000873564525535e-5, 1.9709043035241305e-6, 1.1041532286134855e-5, 2.123169274666984e-6, 1.087352902979755e-5, -0.00010366058158624435, 6.584527744310385e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967486e-6, 7.097885861059478e-5, 2.0704592740516286e-6, 1.077711006778124e-5, 2.0920032557741217e-6, 1.0703056519773473e-5, -0.0001045948882955759, 6.650576332703895e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.56706871506246e-6, 7.426659450857287e-5, 2.4161271355654194e-6, 9.077497029896276e-6, 1.904928390737448e-6, 1.0383100697667016e-5, -0.00010746100305780112, 6.84568658029963e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.087217325638389e-6, 7.463181445234823e-5, 2.463377322795017e-6, 8.05689419292448e-6, 1.7959623655459271e-6, 1.0520621419227332e-5, -0.0001074218482852967, 6.865961206817327e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.209866858306888e-6, 7.47251306055069e-5, 2.4752699947585545e-6, 7.817653231485525e-6, 1.7704719397470727e-6, 1.0552885234463149e-5, -0.00010742185050511383, 6.870572640845746e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639094563e-6, 7.501890369209463e-5, 2.4804316256362364e-6, 1.011725054800979e-5, 2.0160381938703787e-6, 1.0071643240925897e-5, -0.00010875999135519385, 6.873598590747472e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639094563e-6, 7.501890369209463e-5, 2.4804316256362364e-6, 1.011725054800979e-5, 2.0160381938703787e-6, 1.0071643240925897e-5, -0.00010875999135519385, 6.873598590747472e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.350916127004073e-6, 7.621771980862897e-5, 2.6003054236563635e-6, 1.0084374569886898e-5, 2.0127317355982147e-6, 9.897984813096517e-6, -0.00011008948113996177, 6.925448662090737e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.459165519868373e-6, 7.748946979403404e-5, 2.725786228070736e-6, 1.0178529912786336e-5, 2.0249935466930552e-6, 9.73803395773114e-6, -0.00011158155733258178, 6.965578373398106e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0494844367190014e-6, 8.188539161621193e-5, 3.1582791369681045e-6, 9.993973383839315e-6, 2.015918265332335e-6, 9.362936842906553e-6, -0.00011656212391371729, 7.096140231740046e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569797062e-6, 8.2457271893951e-5, 3.216581168921704e-6, 9.528074400217989e-6, 1.9673510758430706e-6, 9.396292294082326e-6, -0.00011701868780611383, 7.121334616118031e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3994294395176284e-6, 8.260094116601576e-5, 3.231229751486635e-6, 9.417226560424594e-6, 1.95588379786746e-6, 9.405183596079168e-6, -0.0001171368618965727, 7.126967585181466e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.830381161886518e-6, 8.274735235952217e-5, 3.238582227760372e-6, 1.0649367147589799e-5, 2.090495177573194e-6, 9.215967015160027e-6, -0.00011786692523173536, 7.094780142243272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.830381161886518e-6, 8.274735235952217e-5, 3.238582227760372e-6, 1.0649367147589799e-5, 2.090495177573194e-6, 9.215967015160027e-6, -0.00011786692523173536, 7.094780142243272e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.911720668677586e-6, 8.43659805142424e-5, 3.394507424027705e-6, 1.0840251678846537e-5, 2.1173640731864665e-6, 9.09217974401457e-6, -0.00011984550408133555, 7.123499978340293e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644513214e-6, 8.60745978332997e-5, 3.556590245317646e-6, 1.107222622137268e-5, 2.1509344845000143e-6, 9.006243060249782e-6, -0.00012197555378489385, 7.14296237570271e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.300227209336073e-6, 9.207177358709433e-5, 4.113973517449837e-6, 1.1603385270424386e-5, 2.2395303355791426e-6, 8.800221369077586e-6, -0.00012936091057029565, 7.231799281334287e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4497219739990654e-6, 9.291085454654521e-5, 4.189225547624127e-6, 1.1466507503527458e-5, 2.2281170507317265e-6, 8.78648483809903e-6, -0.00013029477627844125, 7.2638648179146285e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.486501762231399e-6, 9.312072151217263e-5, 4.2080800518422525e-6, 1.1432529280427322e-5, 2.2253735253085465e-6, 8.785043566324598e-6, -0.00013052942369808982, 7.271173999783079e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719284135e-6, 9.31652881939645e-5, 4.216088057963697e-6, 1.1991899264389686e-5, 2.290582293991973e-6, 8.795920165475567e-6, -0.00013087428480170209, 7.2115021539882545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719284135e-6, 9.31652881939645e-5, 4.216088057963697e-6, 1.1991899264389686e-5, 2.290582293991973e-6, 8.795920165475567e-6, -0.00013087428480170209, 7.2115021539882545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.236058463491258e-6, 9.434383308632242e-5, 4.323681765271148e-6, 1.214253707500271e-5, 2.314362581336862e-6, 8.78389526988392e-6, -0.00013236487209522066, 7.220503853912324e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2690242388661297e-6, 9.55775765929419e-5, 4.434896743324185e-6, 1.2297330964808911e-5, 2.3393803506390136e-6, 8.784513204262164e-6, -0.00013393197818307962, 7.2292560882373305e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733493e-6, 9.989873927378849e-5, 4.8194156726552995e-6, 1.282202103055459e-5, 2.425543618842189e-6, 8.806777333014034e-6, -0.00013942390883014602, 7.266360804618069e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102417602e-6, 0.00010051367244473636, 4.873084421541454e-6, 1.2890400624448783e-5, 2.436936252856149e-6, 8.807535014863804e-6, -0.00014020174743832774, 7.275266169639434e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.409729703214964e-6, 0.00010066745139688812, 4.886486719294223e-6, 1.2907421745726311e-5, 2.4397924685995855e-6, 8.808165993311952e-6, -0.00014039645376762944, 7.277405740594301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399147512727225e-6, 0.0001006618419375024, 4.8869369639062305e-6, 1.2918103508683152e-5, 2.4418536352223e-6, 8.829082701415286e-6, -0.00014040476778800394, 7.267801528547361e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122514, 0.004819320441399931, 0.00013440229007386734, 0.001593932732263452, 0.0002919384547513804, 0.000887211375460307, 0.9914330082058364, 0.0004216088057963697, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.2030046719284135e-6, 9.31652881939645e-5, 4.216088057963697e-6, 1.1991899264389686e-5, 2.290582293991973e-6, 8.795920165475567e-6, -0.00013087428480170209, 7.2115021539882545e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.236058463491258e-6, 9.434383308632242e-5, 4.323681765271148e-6, 1.214253707500271e-5, 2.314362581336862e-6, 8.78389526988392e-6, -0.00013236487209522066, 7.220503853912324e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2690242388661297e-6, 9.55775765929419e-5, 4.434896743324185e-6, 1.2297330964808911e-5, 2.3393803506390136e-6, 8.784513204262164e-6, -0.00013393197818307962, 7.2292560882373305e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733493e-6, 9.989873927378849e-5, 4.8194156726552995e-6, 1.282202103055459e-5, 2.425543618842189e-6, 8.806777333014034e-6, -0.00013942390883014602, 7.266360804618069e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102417602e-6, 0.00010051367244473636, 4.873084421541454e-6, 1.2890400624448783e-5, 2.436936252856149e-6, 8.807535014863804e-6, -0.00014020174743832774, 7.275266169639434e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.409729703214964e-6, 0.00010066745139688812, 4.886486719294223e-6, 1.2907421745726311e-5, 2.4397924685995855e-6, 8.808165993311952e-6, -0.00014039645376762944, 7.277405740594301e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399147512727225e-6, 0.0001006618419375024, 4.8869369639062305e-6, 1.2918103508683152e-5, 2.4418536352223e-6, 8.829082701415286e-6, -0.00014040476778800394, 7.267801528547361e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.637092149379143e-10, 5.4767177976775174e-11, 1.576620669825127e-11, 5.000778317801371e-10, 6.044700623689154e-11, 5.215280142174952e-11, -3.3716715933559876e-10, -8.23346498291734e-11, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00044570959125509433, 0.0056139262119402275, 0.00017158342383826082, 0.001696121123472896, 0.0003113557930161013, 0.0009596350979667635, 0.990320471606569, 0.0004812138186045835, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-0.0001819689770143014, 8.153353700462995e-6, 1.3400066170844063e-5, 0.00018457347725452412, 4.600714561212044e-5, 2.649072860921018e-5, -3.397379536429811e-7, -5.530664234610244e-5, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122514, 0.004819320441399931, 0.00013440229007386734, 0.001593932732263452, 0.0002919384547513804, 0.000887211375460307, 0.9914330082058364, 0.0004216088057963697, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484670, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff8514846b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514846d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.00041859436108122514, 0.004819320441399931, 0.00013440229007386734, 0.001593932732263452, 0.0002919384547513804, 0.000887211375460307, 0.9914330082058364, 0.0004216088057963697, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 1.6001761074395364e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484670, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484690, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff8514846b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514846d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 30.0, [1.0, 1.0, 0.01, 1.6001761074395364e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 30.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  77
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                362
Number of accepted steps:                          12
Number of rejected steps:                          0
Maximum eigenvalue recorded:                       0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [100.0], [[[0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484850, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484870, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff851484890, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514848b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], (100.0, 100.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (+)(-50.0, t)
                        ˍ₋out[2] = (+)(-12.0, t)
                        ˍ₋out[3] = (+)(-28.0, t)
                        ˍ₋out[4] = (+)(-22.0, t)
                        ˍ₋out[5] = (+)(-38.0, t)
                        ˍ₋out[6] = (+)(-4.0, t)
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#601").u
        ˍ₋arg1 = (var"##MTKIntegrator#601").u
        ˍ₋arg2 = (var"##MTKIntegrator#601").p
        t = (var"##MTKIntegrator#601").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
                        ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#604").u
        ˍ₋arg1 = (var"##MTKIntegrator#604").u
        ˍ₋arg2 = (var"##MTKIntegrator#604").p
        t = (var"##MTKIntegrator#604").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[10] = 0.143
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#607").u
        ˍ₋arg1 = (var"##MTKIntegrator#607").u
        ˍ₋arg2 = (var"##MTKIntegrator#607").p
        t = (var"##MTKIntegrator#607").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.21
                        ˍ₋out[11] = 0.11
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#610").u
        ˍ₋arg1 = (var"##MTKIntegrator#610").u
        ˍ₋arg2 = (var"##MTKIntegrator#610").p
        t = (var"##MTKIntegrator#610").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.36
                        ˍ₋out[12] = 0.005
                        ˍ₋out[11] = 0.2
                        ˍ₋out[13] = 0.005
                        ˍ₋out[14] = 0.008
                        ˍ₋out[15] = 0.015
                        ˍ₋out[16] = 0.08
                        ˍ₋out[17] = 0.017
                        ˍ₋out[18] = 0.017
                        ˍ₋out[19] = 0.017
                        ˍ₋out[20] = 0.017
                        ˍ₋out[21] = 0.034
                        ˍ₋out[22] = 0.034
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#613").u
        ˍ₋arg1 = (var"##MTKIntegrator#613").u
        ˍ₋arg2 = (var"##MTKIntegrator#613").p
        t = (var"##MTKIntegrator#613").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[17] = 0.02
                        ˍ₋out[19] = 0.02
                        ˍ₋out[20] = 0.01
                        ˍ₋out[21] = 0.025
                        ˍ₋out[10] = 0.2
                        ˍ₋out[22] = 0.025
                        ˍ₋out[18] = 0.02
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        ˍ₋out = (var"##MTKIntegrator#616").u
        ˍ₋arg1 = (var"##MTKIntegrator#616").u
        ˍ₋arg2 = (var"##MTKIntegrator#616").p
        t = (var"##MTKIntegrator#616").t
        begin
            begin
                #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
                #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[9] = 0.422
                        ˍ₋out[12] = 0.0057
                        ˍ₋out[11] = 0.285
                        ˍ₋out[13] = 0.0057
                        #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484850, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484870, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff851484890, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514848b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [100.0], [[[0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.399147512727225e-6, 0.0001006618419375024, 4.8869369639062305e-6, 1.2918103508683152e-5, -0.00011400067329213268, 0.00012527160962877028, -0.00014040476778800394, 7.267801528547361e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [3.399147512727225e-6, 0.0001006618419375024, 4.8869369639062305e-6, 1.2918103508683152e-5, -0.00011400067329213268, 0.00012527160962877028, -0.00014040476778800394, 7.267801528547361e-6, -0.0, -0.0  …  -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484850, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484870, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff851484890, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514848b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.00044919875500090727, 0.0057171350574016155, 0.00017657677934124465, 0.0017093699442555178, 0.00031386125856429917, 0.0009687190258563619, 0.9901764621498523, 0.000488693696390623, 0.209, 0.2  …  0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd6690, Ptr{Nothing} @0x00007ff851484850, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007ff8cdbd68b0, Ptr{Nothing} @0x00007ff851484870, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6ad0, Ptr{Nothing} @0x00007ff851484890, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007ff8cdbd6d10, Ptr{Nothing} @0x00007ff8514848b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
            (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            #= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
            #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                    ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
                    ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
                    ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
                    ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
                    ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
                    ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
                    ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
                    ˍ₋out[9] = -0.0
                    ˍ₋out[10] = -0.0
                    ˍ₋out[11] = -0.0
                    ˍ₋out[12] = -0.0
                    ˍ₋out[13] = -0.0
                    ˍ₋out[14] = -0.0
                    ˍ₋out[15] = -0.0
                    ˍ₋out[16] = -0.0
                    ˍ₋out[17] = -0.0
                    ˍ₋out[18] = -0.0
                    ˍ₋out[19] = -0.0
                    ˍ₋out[20] = -0.0
                    ˍ₋out[21] = -0.0
                    ˍ₋out[22] = -0.0
                    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                    nothing
                end
        end
    end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)")  …  Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)(var"Healed(t)", var"Infected(t)")
        end
    end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
        end
    end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            var"Infected(t)"
        end
    end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
        var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
        var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
        var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
        var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
        var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
        var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
        var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
        var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
        var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
        var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
        var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
        var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
        var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
        var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
        var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
        var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
        var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
        var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
        var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
        var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
        var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
        ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
        epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
        tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
        theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
        ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
        ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
        Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
        Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
        ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
        Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
        alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
        Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
        ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
        ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
        Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
        begin
            (/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
        end
    end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0  …  Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t)  …  delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 100.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.95187753014e-310 6.95187752607366e-310 … 6.95187752126976e-310 6.951877533523e-310; 6.9518775337775e-310 6.95187752118043e-310 … 6.951877529859e-310 6.9518775316064e-310; … ; 6.95187753469965e-310 6.95187752699973e-310 … 6.9518775320653e-310 6.95187753432455e-310; 6.9518775272614e-310 6.9518775217417e-310 … 6.951877521833e-310 6.9518775342206e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0  …  0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0  …  0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 100.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations:                  3
Number of function 2 evaluations:                  0
Number of W matrix evaluations:                    0
Number of linear solves:                           0
Number of Jacobians created:                       0
Number of nonlinear solver iterations:             0
Number of nonlinear solver convergence failures:   0
Number of rootfind condition calls:                0
Number of accepted steps:                          0
Number of rejected steps:                          0, [1], SciMLBase.ReturnCode.Success)), :MAXTIME_REACHED)